mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-23 22:52:58 +00:00
Remove LPVOID from level renderer rebuild threads
This commit is contained in:
parent
8da27c59ad
commit
529ecb8185
|
|
@ -3626,7 +3626,7 @@ void LevelRenderer::staticCtor()
|
|||
}
|
||||
}
|
||||
|
||||
int LevelRenderer::rebuildChunkThreadProc(LPVOID lpParam)
|
||||
int LevelRenderer::rebuildChunkThreadProc(void *lpParam)
|
||||
{
|
||||
Vec3::CreateNewThreadStorage();
|
||||
AABB::CreateNewThreadStorage();
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@ public:
|
|||
static C4JThread::EventArray *s_rebuildCompleteEvents;
|
||||
static C4JThread::Event *s_activationEventA[MAX_CHUNK_REBUILD_THREADS];
|
||||
static void staticCtor();
|
||||
static int rebuildChunkThreadProc(LPVOID lpParam);
|
||||
static int rebuildChunkThreadProc(void *lpParam);
|
||||
|
||||
CRITICAL_SECTION m_csChunkFlags;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue