mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 00:41:55 +00:00
- fixed Linux paths not ending with a slash.
This commit is contained in:
parent
286d53d3bf
commit
52e12702cf
1 changed files with 3 additions and 3 deletions
|
@ -170,7 +170,7 @@ FString M_GetScreenshotsPath()
|
||||||
|
|
||||||
FString M_GetSavegamesPath()
|
FString M_GetSavegamesPath()
|
||||||
{
|
{
|
||||||
return NicePath("$HOME/" GAME_DIR);
|
return NicePath("$HOME/" GAME_DIR "/");
|
||||||
}
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
@ -183,7 +183,7 @@ FString M_GetSavegamesPath()
|
||||||
|
|
||||||
FString M_GetDocumentsPath()
|
FString M_GetDocumentsPath()
|
||||||
{
|
{
|
||||||
return NicePath("$HOME/" GAME_DIR);
|
return NicePath("$HOME/" GAME_DIR "/");
|
||||||
}
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
@ -196,7 +196,7 @@ FString M_GetDocumentsPath()
|
||||||
|
|
||||||
FString M_GetDemoPath()
|
FString M_GetDemoPath()
|
||||||
{
|
{
|
||||||
return M_GetDocumentsPath() + "/demo/";
|
return M_GetDocumentsPath() + "demo/";
|
||||||
}
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
Loading…
Reference in a new issue