mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
SetBrush: signed/unsigned fix
This commit is contained in:
parent
32c1bae1f2
commit
7db4cefb2c
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ setTexturedef
|
|||
-setTexturedef:(texturedef_t *)
|
||||
tex forFace:(int) f
|
||||
{
|
||||
if ((unsigned) f > numfaces)
|
||||
if (f > numfaces)
|
||||
Sys_Error ("setTexturedef:forFace: bad face number %i", f);
|
||||
|
||||
faces[f].texture = *tex;
|
||||
|
|
Loading…
Reference in a new issue