Fix path part

This commit is contained in:
Christian Semmler 2024-01-13 17:45:44 -05:00
parent 41b9deed81
commit f9b5b64d30

View File

@ -168,7 +168,7 @@ void LegoGameState::GetFileSavePath(MxString* p_outPath, MxULong p_slotn)
strcpy(path, m_savePath);
// Slot: "G0", "G1", ...
strcat(path, "G");
strcat(path, "\\G");
baseForSlot[0] += p_slotn;
strcat(path, baseForSlot);