ref: d4f13cea8a04750d4b91bc50c3929101f7505e11
parent: bbf77f9cfd4ec13bb4f7eda3455aba73adfc3595
parent: 9bfaeb5390579becb35a7a5b03610e7c958bd989
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Jan 4 16:53:06 EST 2020
Merge branch 'accurate' into portable
--- a/src/SelStage.cpp
+++ b/src/SelStage.cpp
@@ -155,7 +155,7 @@
int StageSelectLoop(int *p_event)
{
- char old_script_path[260];
+ char old_script_path[MAX_PATH];
RECT rcView = {0, 0, WINDOW_WIDTH, WINDOW_HEIGHT};
--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -120,7 +120,7 @@
BOOL LoadTextScript2(const char *name)
{
// Get path
- char path[260];
+ char path[MAX_PATH];
sprintf(path, "%s/%s", gDataPath, name);
gTS.size = GetFileSizeLong(path);
--
⑨