diff options
author | Cameron Cawley | 2019-08-11 20:44:15 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-08-12 10:39:43 +0300 |
commit | ba2bc60043c8a1bbc651ca237783ef5e6883bda0 (patch) | |
tree | ae999e5448226e00b84c12976e6e60b4f2dc435b /backends/platform/sdl/switch | |
parent | 7311252d8abbb736abcf1d01019d9ad572c95e2c (diff) | |
download | scummvm-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/platform/sdl/switch')
-rw-r--r-- | backends/platform/sdl/switch/switch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/switch/switch.cpp b/backends/platform/sdl/switch/switch.cpp index 85e7b7a458..ab8427cf62 100644 --- a/backends/platform/sdl/switch/switch.cpp +++ b/backends/platform/sdl/switch/switch.cpp @@ -77,7 +77,7 @@ void OSystem_Switch::initBackend() { // Create the savefile manager if (_savefileManager == 0) { - _savefileManager = new POSIXSaveFileManager(); + _savefileManager = new DefaultSaveFileManager("./saves"); } // Event source |