parametrize quicksave file name

This commit is contained in:
Fabian Greffrath 2022-01-17 12:23:17 +01:00
parent f567b7ab91
commit 992e69e591

View File

@ -1506,7 +1506,7 @@ char* G_SaveGameName(int slot)
char buf[16] = {0};
// save to dedicated quicksave slot
if (slot == quickSaveSlot)
strcpy(buf, "woofquick.dsg");
sprintf(buf, "%.4s%s.dsg", savegamename, "quick");
else
sprintf(buf, "%.7s%d.dsg", savegamename, 10*savepage+slot);