Use DIR_SEPARATOR_S

This commit is contained in:
bcoles 2020-04-01 17:27:31 +11:00 committed by GitHub
parent 09acabf5c4
commit cd3a9ac613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2115,7 +2115,7 @@ char *M_GetSaveGameDir(char *iwadname)
free(topdir); free(topdir);
#else #else
savegamedir = M_StringJoin(configdir, "/.savegame/", NULL); savegamedir = M_StringJoin(configdir, DIR_SEPARATOR_S, ".savegame/", NULL);
M_MakeDirectory(savegamedir); M_MakeDirectory(savegamedir);