mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 09:44:09 +00:00
fix some string sizes to be MAX_PATH
This commit is contained in:
parent
d31a7e24a8
commit
abe57fefa0
2 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue