- fixed Linux paths not ending with a slash.

This commit is contained in:
Christoph Oelckers 2020-02-11 21:00:01 +01:00
parent 286d53d3bf
commit 52e12702cf

View file

@ -170,7 +170,7 @@ FString M_GetScreenshotsPath()
FString M_GetSavegamesPath()
{
return NicePath("$HOME/" GAME_DIR);
return NicePath("$HOME/" GAME_DIR "/");
}
//===========================================================================
@ -183,7 +183,7 @@ FString M_GetSavegamesPath()
FString M_GetDocumentsPath()
{
return NicePath("$HOME/" GAME_DIR);
return NicePath("$HOME/" GAME_DIR "/");
}
//===========================================================================
@ -196,7 +196,7 @@ FString M_GetDocumentsPath()
FString M_GetDemoPath()
{
return M_GetDocumentsPath() + "/demo/";
return M_GetDocumentsPath() + "demo/";
}
//===========================================================================