mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-03 01:51:02 +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 *)
|
-setTexturedef:(texturedef_t *)
|
||||||
tex forFace:(int) f
|
tex forFace:(int) f
|
||||||
{
|
{
|
||||||
if ((unsigned) f > numfaces)
|
if (f > numfaces)
|
||||||
Sys_Error ("setTexturedef:forFace: bad face number %i", f);
|
Sys_Error ("setTexturedef:forFace: bad face number %i", f);
|
||||||
|
|
||||||
faces[f].texture = *tex;
|
faces[f].texture = *tex;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue