fix some string sizes to be MAX_PATH

This commit is contained in:
withmorten 2021-06-30 16:28:07 +02:00
parent d31a7e24a8
commit abe57fefa0
2 changed files with 8 additions and 0 deletions

View file

@ -540,7 +540,11 @@ GetNameOfSavedGame(int32 slot)
bool
CheckDataNotCorrupt(int32 slot, char *name)
{
#ifdef FIX_BUGS
char filename[MAX_PATH];
#else
char filename[100];
#endif
int32 blocknum = 0;
eLevelName level = LEVEL_GENERIC;