mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +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 spritesmooth_t spritesmooth[MAXSPRITES];
|
||||
extern spritesmooth_t spritesmooth[MAXSPRITES + MAXUNIQHUDID];
|
||||
|
||||
extern sectortype sector[MAXSECTORS];
|
||||
extern walltype wall[MAXWALLS];
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
#endif
|
||||
|
||||
spriteext_t spriteext[MAXSPRITES];
|
||||
spritesmooth_t spritesmooth[MAXSPRITES];
|
||||
spritesmooth_t spritesmooth[MAXSPRITES + MAXUNIQHUDID];
|
||||
|
||||
sectortype sector[MAXSECTORS];
|
||||
walltype wall[MAXWALLS];
|
||||
|
|
Loading…
Reference in a new issue