mirror of https://github.com/Nofated095/re-GTA.git
fix some string sizes to be MAX_PATH
This commit is contained in:
parent
22e8e0eff8
commit
3383d8c6e7
|
@ -487,7 +487,11 @@ GetNameOfSavedGame(int32 slot)
|
||||||
bool
|
bool
|
||||||
CheckDataNotCorrupt(int32 slot, char *name)
|
CheckDataNotCorrupt(int32 slot, char *name)
|
||||||
{
|
{
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
char filename[MAX_PATH];
|
||||||
|
#else
|
||||||
char filename[100];
|
char filename[100];
|
||||||
|
#endif
|
||||||
|
|
||||||
int32 blocknum = 0;
|
int32 blocknum = 0;
|
||||||
eLevelName level = LEVEL_GENERIC;
|
eLevelName level = LEVEL_GENERIC;
|
||||||
|
|
|
@ -25,7 +25,11 @@ C_PcSave::SetSaveDirectory(const char *path)
|
||||||
bool
|
bool
|
||||||
C_PcSave::DeleteSlot(int32 slot)
|
C_PcSave::DeleteSlot(int32 slot)
|
||||||
{
|
{
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
char FileName[MAX_PATH];
|
||||||
|
#else
|
||||||
char FileName[200];
|
char FileName[200];
|
||||||
|
#endif
|
||||||
|
|
||||||
PcSaveHelper.nErrorCode = SAVESTATUS_SUCCESSFUL;
|
PcSaveHelper.nErrorCode = SAVESTATUS_SUCCESSFUL;
|
||||||
sprintf(FileName, "%s%i.b", DefaultPCSaveFileName, slot + 1);
|
sprintf(FileName, "%s%i.b", DefaultPCSaveFileName, slot + 1);
|
||||||
|
|
Loading…
Reference in New Issue