mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
- fixed savegame path generation
This commit is contained in:
parent
b6a3a60251
commit
51658de730
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ FString M_GetSavegamesPath()
|
||||||
path.Substitute("\\", "/");
|
path.Substitute("\\", "/");
|
||||||
if (path[path.Len() - 1] != '/') path << '/';
|
if (path[path.Len() - 1] != '/') path << '/';
|
||||||
}
|
}
|
||||||
else if (*cl_savedir)
|
else if (**cl_savedir)
|
||||||
{
|
{
|
||||||
path = cl_savedir;
|
path = cl_savedir;
|
||||||
path.Substitute("\\", "/");
|
path.Substitute("\\", "/");
|
||||||
|
|
Loading…
Reference in a new issue