Fix another bunch of improperly sized bitmap arrays

git-svn-id: https://svn.eduke32.com/eduke32@7806 1a8010ca-5511-0410-912e-c29ae57300e0

# Conflicts:
#	source/build/src/build.cpp
This commit is contained in:
terminx 2019-07-19 01:49:19 +00:00 committed by Christoph Oelckers
parent 3d63d1b720
commit 97390c1ff4
5 changed files with 8 additions and 8 deletions

View file

@ -1356,7 +1356,7 @@ static int32_t defsparser(scriptfile *script)
char *modelend, *modelfn;
double scale=1.0, mzadd=0.0, myoffset=0.0;
int32_t shadeoffs=0, pal=0, flags=0;
uint8_t usedframebitmap[1024>>3];
uint8_t usedframebitmap[(1024+7)>>3];
int32_t model_ok = 1;