mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-19 17:01:46 +00:00
change msurface_t's extents from short to unsigned short so >> expressions
involving it go faster
This commit is contained in:
parent
d3fc8c5fb6
commit
f14815a57f
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ typedef struct msurface_s
|
|||
struct surfcache_s *cachespots[MIPLEVELS];
|
||||
|
||||
short texturemins[2];
|
||||
short extents[2];
|
||||
unsigned short extents[2];
|
||||
|
||||
int light_s, light_t; // gl lightmap coordinates
|
||||
|
||||
|
|
Loading…
Reference in a new issue