forgor to make it a pointer

This commit is contained in:
Dominicentek 2023-12-18 20:41:14 +01:00
parent 1e9fc07b1a
commit 00d13f055d

View file

@ -1970,7 +1970,7 @@ void gfx_precache_textures(void) {
//fs_walk(FS_TEXTUREDIR, preload_texture, NULL, true);
// ...IM CLEARING THE CACHE INSTEAD XDDDDDDDD
memset(gfx_texture_cache, 0, sizeof(gfx_texture_cache));
memset(&gfx_texture_cache, 0, sizeof(gfx_texture_cache));
}
#endif