mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
Fix buffer overflow at maploader.cpp:392
This commit is contained in:
parent
b899b63843
commit
e4e949877d
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ struct usermaphack_t
|
||||||
};
|
};
|
||||||
|
|
||||||
extern spriteext_t spriteext[MAXSPRITES];
|
extern spriteext_t spriteext[MAXSPRITES];
|
||||||
extern spritesmooth_t spritesmooth[MAXSPRITES];
|
extern spritesmooth_t spritesmooth[MAXSPRITES + MAXUNIQHUDID];
|
||||||
|
|
||||||
extern sectortype sector[MAXSECTORS];
|
extern sectortype sector[MAXSECTORS];
|
||||||
extern walltype wall[MAXWALLS];
|
extern walltype wall[MAXWALLS];
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
spriteext_t spriteext[MAXSPRITES];
|
spriteext_t spriteext[MAXSPRITES];
|
||||||
spritesmooth_t spritesmooth[MAXSPRITES];
|
spritesmooth_t spritesmooth[MAXSPRITES + MAXUNIQHUDID];
|
||||||
|
|
||||||
sectortype sector[MAXSECTORS];
|
sectortype sector[MAXSECTORS];
|
||||||
walltype wall[MAXWALLS];
|
walltype wall[MAXWALLS];
|
||||||
|
|
Loading…
Reference in a new issue