]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - zone.c
oops, didn't want this debug spam to be committed
[xonotic/darkplaces.git] / zone.c
diff --git a/zone.c b/zone.c
index 87e7121248bf6cd0043cdf69156dfffa75dd1a52..02920535287b75970eaf7f258849f75cd2204748 100644 (file)
--- a/zone.c
+++ b/zone.c
@@ -874,13 +874,13 @@ void Memory_Init (void)
        u.s = 0x100;
        mem_bigendian = u.b[0] != 0;
 
-       if (Thread_HasThreads())
-               mem_mutex = Thread_CreateMutex();
-
        sentinel_seed = rand();
        poolchain = NULL;
        tempmempool = Mem_AllocPool("Temporary Memory", POOLFLAG_TEMP, NULL);
        zonemempool = Mem_AllocPool("Zone", 0, NULL);
+
+       if (Thread_HasThreads())
+               mem_mutex = Thread_CreateMutex();
 }
 
 void Memory_Shutdown (void)