Merge branch 'accurate' into portable

This commit is contained in:
Clownacy 2020-01-04 21:53:06 +00:00
commit d4f13cea8a
2 changed files with 2 additions and 2 deletions

View file

@ -155,7 +155,7 @@ void PutStageSelectObject(void)
int StageSelectLoop(int *p_event)
{
char old_script_path[260];
char old_script_path[MAX_PATH];
RECT rcView = {0, 0, WINDOW_WIDTH, WINDOW_HEIGHT};

View file

@ -120,7 +120,7 @@ void EncryptionBinaryData2(unsigned char *pData, long size)
BOOL LoadTextScript2(const char *name)
{
// Get path
char path[260];
char path[MAX_PATH];
sprintf(path, "%s/%s", gDataPath, name);
gTS.size = GetFileSizeLong(path);