aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/C4JThread.h
diff options
context:
space:
mode:
authorqwasdrizzel <145519042+qwasdrizzel@users.noreply.github.com>2026-03-16 21:44:26 -0500
committerGitHub <noreply@github.com>2026-03-16 21:44:26 -0500
commitce739f6045ec72127491286ea3f3f21e537c1b55 (patch)
treef33bd42a47c1b4a7b2153a7fb77127ee3b407db9 /Minecraft.World/C4JThread.h
parent255a18fe8e9b57377975f82e2b227afe2a12eda0 (diff)
parent5a59f5d146b43811dde6a5a0245ee9875d7b5cd1 (diff)
Merge branch 'smartcmd:main' into main
Diffstat (limited to 'Minecraft.World/C4JThread.h')
-rw-r--r--Minecraft.World/C4JThread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Minecraft.World/C4JThread.h b/Minecraft.World/C4JThread.h
index 3d5f050c..6bf0a0a7 100644
--- a/Minecraft.World/C4JThread.h
+++ b/Minecraft.World/C4JThread.h
@@ -66,7 +66,7 @@ public:
e_modeAutoClear,
e_modeManualClear
};
- Event(EMode mode = e_modeAutoClear);
+ Event(EMode mode = e_modeAutoClear);
~Event();
void Set();
void Clear();
@@ -75,7 +75,7 @@ public:
private:
EMode m_mode;
#ifdef __PS3__
- sys_event_flag_t m_event;
+ sys_event_flag_t m_event;
#elif defined __ORBIS__
SceKernelEventFlag m_event;
#elif defined __PSVITA__
@@ -111,7 +111,7 @@ public:
int m_size;
EMode m_mode;
#ifdef __PS3__
- sys_event_flag_t m_events;
+ sys_event_flag_t m_events;
#elif defined __ORBIS__
SceKernelEventFlag m_events;
#elif defined __PSVITA__
@@ -129,7 +129,7 @@ public:
typedef void (ThreadInitFunc)();
C4JThread* m_thread;
- std::queue<void*> m_queue;
+ std::queue<void*> m_queue;
C4JThread::EventArray* m_startEvent;
C4JThread::Event* m_finishedEvent;
CRITICAL_SECTION m_critSect;
@@ -187,7 +187,7 @@ private:
bool m_isRunning;
bool m_hasStarted;
int m_exitCode;
- __int64 m_lastSleepTime;
+ int64_t m_lastSleepTime;
static std::vector<C4JThread*> ms_threadList;
static CRITICAL_SECTION ms_threadListCS;