X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=gl_textures.c;h=0c9147caa8a18ce46ef91e6c35fda56cd4526400;hb=e13a8c596f2c51ca815773f89fee4f4f4f723f74;hp=149ab8882dc3b712b110b8615ec15671b8cf3a12;hpb=2824e7f858f9899abfa22f6081de9a8c8db4531e;p=xonotic%2Fdarkplaces.git diff --git a/gl_textures.c b/gl_textures.c index 149ab888..0c9147ca 100644 --- a/gl_textures.c +++ b/gl_textures.c @@ -482,9 +482,9 @@ static void r_textures_start(void) // use the largest scrap texture size we can (not sure if this is really a good idea) for (block_size = 1;block_size < realmaxsize && block_size < gl_max_scrapsize.integer;block_size <<= 1); - texturemempool = Mem_AllocPool("Texture Info"); - texturedatamempool = Mem_AllocPool("Texture Storage (not yet uploaded)"); - textureprocessingmempool = Mem_AllocPool("Texture Processing Buffers"); + texturemempool = Mem_AllocPool("Texture Info", 0, NULL); + texturedatamempool = Mem_AllocPool("Texture Storage (not yet uploaded)", 0, NULL); + textureprocessingmempool = Mem_AllocPool("Texture Processing Buffers", 0, NULL); // Disable JPEG screenshots if the DLL isn't loaded if (! JPEG_OpenLibrary ())