Allow larger sprites file

This commit is contained in:
stevenhowes
2021-09-01 22:13:30 +01:00
parent 3ff6a534a9
commit 135bdd40f5
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -39,7 +39,7 @@ void load_sprites(char* filename, unsigned char **buffername)
}
// Stops us trying to mallocsomething mad if file is too big.
if(length > 200000)
if(length > 250000)
{
screen_nobuffer();
printf("Sprite file %s seems unreasonably large at %i bytes, object type is %i\n",filename, length, outreg.r[0]);