axihttp fixed

This commit is contained in:
sin365 2024-12-24 23:36:49 +08:00
parent 42a5e31557
commit 063e256c35

View File

@ -14,7 +14,6 @@ using System.Threading;
public static class PSVThread public static class PSVThread
{ {
static Thread psvThread = new Thread(Loop);
static AutoResetEvent autoEvent = new AutoResetEvent(false); static AutoResetEvent autoEvent = new AutoResetEvent(false);
static Queue<Action> qActs = new Queue<Action>(); static Queue<Action> qActs = new Queue<Action>();
static Queue<Action> qWork = new Queue<Action>(); static Queue<Action> qWork = new Queue<Action>();
@ -29,6 +28,7 @@ public static class PSVThread
} }
#if UNITY_PSP2 #if UNITY_PSP2
static Thread psvThread = new Thread(Loop);
static bool bSingleInit = false; static bool bSingleInit = false;
static void SingleInit() static void SingleInit()
{ {