From 21e0494fe99939e36bbf7fe79d9e6cae698e2f79 Mon Sep 17 00:00:00 2001 From: cypress Date: Tue, 13 Aug 2024 20:24:49 -0700 Subject: [PATCH] Fix broken texture cache lookup --- source/gl_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gl_draw.c b/source/gl_draw.c index acd25eb..5564a6e 100644 --- a/source/gl_draw.c +++ b/source/gl_draw.c @@ -1679,7 +1679,7 @@ int GL_LoadTexture (char *identifier, int width, int height, byte *data, qboolea // naievil -- why do we have this twice lol gltextures[glt->texnum].checksum = lhcsum; - gltextures[glt->texnum].lhcsum = lhcsum; + //gltextures[glt->texnum].lhcsum = lhcsum; gltextures[glt->texnum].width = width; gltextures[glt->texnum].height = height;