aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp')
-rw-r--r--libs/game_bethesda/src/gamebryo/gamebryolocalsavegames.cpp4
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