Make saveFilePath not an std::string

Since it only ever gets assigned from FILESYSTEM_getUserSaveDirectory(),
and that function returns a C string, and the variable is only ever read
from again, this doesn't need to be an std::string.
This commit is contained in:
Misa
2021-03-06 15:30:22 -08:00
committed by Ethan Lee
parent 36e91a9bb1
commit 40c6a01917
2 changed files with 5 additions and 5 deletions

View File

@@ -183,7 +183,7 @@ public:
void initteleportermode(void);
std::string saveFilePath;
const char* saveFilePath;
int door_left;