mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 03:07:14 +00:00
Remove DWORD from compression TLS storage
This commit is contained in:
parent
fb3e4947c6
commit
afca289848
|
|
@ -16,7 +16,7 @@
|
|||
#include "../../../Minecraft.Client/Platform/PS3/PS3Extras/EdgeZLib.h"
|
||||
#endif //__PS3__
|
||||
|
||||
DWORD Compression::tlsIdx = 0;
|
||||
unsigned int Compression::tlsIdx = 0;
|
||||
Compression::ThreadStorage *Compression::tlsDefault = NULL;
|
||||
|
||||
Compression::ThreadStorage::ThreadStorage()
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ private:
|
|||
ThreadStorage();
|
||||
~ThreadStorage();
|
||||
};
|
||||
static DWORD tlsIdx;
|
||||
static unsigned int tlsIdx;
|
||||
static ThreadStorage *tlsDefault;
|
||||
public:
|
||||
// Each new thread that needs to use Compression will need to call one of the following 2 functions, to either create its own
|
||||
|
|
|
|||
Loading…
Reference in a new issue