mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-24 04:51:51 +00:00
Fix type overflow.
This commit is contained in:
parent
c004eb1c9a
commit
62dfff0b78
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ extern overflowtimes_t dev_overflows; //this stores the last time overflow messa
|
||||||
//johnfitz -- moved here from r_brush.c
|
//johnfitz -- moved here from r_brush.c
|
||||||
extern int gl_lightmap_format, lightmap_bytes;
|
extern int gl_lightmap_format, lightmap_bytes;
|
||||||
typedef struct glRect_s {
|
typedef struct glRect_s {
|
||||||
unsigned char l,t,w,h;
|
unsigned short l,t,w,h;
|
||||||
} glRect_t;
|
} glRect_t;
|
||||||
struct lightmap_s
|
struct lightmap_s
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue