aboutsummaryrefslogtreecommitdiff
path: root/backends/saves
diff options
context:
space:
mode:
authorCameron Cawley2019-08-11 20:44:15 +0100
committerFilippos Karapetis2019-08-12 10:39:43 +0300
commitba2bc60043c8a1bbc651ca237783ef5e6883bda0 (patch)
treeae999e5448226e00b84c12976e6e60b4f2dc435b /backends/saves
parent7311252d8abbb736abcf1d01019d9ad572c95e2c (diff)
downloadscummvm-rg350-ba2bc60043c8a1bbc651ca237783ef5e6883bda0.tar.gz
scummvm-rg350-ba2bc60043c8a1bbc651ca237783ef5e6883bda0.tar.bz2
scummvm-rg350-ba2bc60043c8a1bbc651ca237783ef5e6883bda0.zip
BACKENDS: Use the default save file manager on Switch and SamsungTV
Diffstat (limited to 'backends/saves')
-rw-r--r--backends/saves/posix/posix-saves.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/backends/saves/posix/posix-saves.cpp b/backends/saves/posix/posix-saves.cpp
index 045ccb08ba..0863e4400b 100644
--- a/backends/saves/posix/posix-saves.cpp
+++ b/backends/saves/posix/posix-saves.cpp
@@ -42,12 +42,6 @@
POSIXSaveFileManager::POSIXSaveFileManager() {
// Register default savepath.
-#if defined(SAMSUNGTV)
- ConfMan.registerDefault("savepath", "/mtd_wiselink/scummvm savegames");
-#elif defined(NINTENDO_SWITCH)
- Posix::assureDirectoryExists("./saves", nullptr);
- ConfMan.registerDefault("savepath", "./saves");
-#else
Common::String savePath;
#if defined(MACOSX)
@@ -127,7 +121,6 @@ POSIXSaveFileManager::POSIXSaveFileManager() {
}
}
}
-#endif
}
#endif