Remove DWORD from chunk TLS storage

This commit is contained in:
notmatthewbeshay 2026-03-10 09:36:56 +11:00
parent 529ecb8185
commit 96a7519f5d
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@
int Chunk::updates = 0;
#ifdef _LARGE_WORLDS
DWORD Chunk::tlsIdx = TlsAlloc();
unsigned int Chunk::tlsIdx = TlsAlloc();
void Chunk::CreateNewThreadStorage()
{

View file

@ -32,7 +32,7 @@ private:
#ifndef _LARGE_WORLDS
static Tesselator *t;
#else
static DWORD tlsIdx;
static unsigned int tlsIdx;
public:
static void CreateNewThreadStorage();
static void ReleaseThreadStorage();