diff --git a/source/gl_draw.c b/source/gl_draw.c index ef8f10b..13b4843 100644 --- a/source/gl_draw.c +++ b/source/gl_draw.c @@ -1337,7 +1337,15 @@ int GL_LoadTexture (char *identifier, int width, int height, byte *data, qboolea if (!strcmp (identifier, glt->identifier)) { if (width != glt->width || height != glt->height) - Sys_Error ("GL_LoadTexture: cache mismatch"); + { + glt->width = width; + glt->height = height; + glt->mipmap = mipmap; + + GL_Bind (glt->texnum); + + GL_Upload8 (data, width, height, mipmap, alpha); + } return gltextures[i].texnum; } }