diff options
Diffstat (limited to 'libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp')
| -rw-r--r-- | libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp b/libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp index e4df0ea..4c1199c 100644 --- a/libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp +++ b/libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp @@ -56,7 +56,9 @@ QString GamebryoLocalSavegames::localSavesDummy() const QDir GamebryoLocalSavegames::localSavesDirectory() const { - return QDir(m_Game->myGamesPath()).absoluteFilePath(localSavesDummy()); + QString dummy = localSavesDummy(); + dummy.replace("\\", "/"); + return QDir(m_Game->myGamesPath()).absoluteFilePath(dummy); } QDir GamebryoLocalSavegames::localGameDirectory() const |
