Now you can change mods in GL safely! Endy sent me a fix for it just

about 5 seconds after I figured out how to fix it, so I can't take full
credit for this.  =>
This commit is contained in:
Joseph Carter 2000-03-05 12:55:16 +00:00
parent 05cd97a097
commit d541b20f5e
1 changed files with 11 additions and 3 deletions

View File

@ -1428,9 +1428,17 @@ 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");
// 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;
}
}