diff options
author | Bastien Bouclet | 2019-10-13 20:58:19 +0200 |
---|---|---|
committer | Bastien Bouclet | 2019-10-14 21:32:52 +0200 |
commit | 0f9cdfc0b8ee386173a32dce0f73e7e48b5a4598 (patch) | |
tree | e39c697e3fb90067d2732b50b8496f894e31d7ba | |
parent | 5acaaed860dd206528726462eb72e2273e1988e2 (diff) | |
download | scummvm-rg350-0f9cdfc0b8ee386173a32dce0f73e7e48b5a4598.tar.gz scummvm-rg350-0f9cdfc0b8ee386173a32dce0f73e7e48b5a4598.tar.bz2 scummvm-rg350-0f9cdfc0b8ee386173a32dce0f73e7e48b5a4598.zip |
3DS: Fix creating the scummvm directory on the SD card
-rw-r--r-- | backends/platform/3ds/osystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/3ds/osystem.cpp b/backends/platform/3ds/osystem.cpp index 0e5cb7bfbb..8f896ad7fb 100644 --- a/backends/platform/3ds/osystem.cpp +++ b/backends/platform/3ds/osystem.cpp @@ -83,7 +83,7 @@ OSystem_3DS::OSystem_3DS(): fsFactory->addDrive("romfs:"); _fsFactory = fsFactory; - Posix::assureDirectoryExists("sdmc:/3ds/scummvm/saves/"); + Posix::assureDirectoryExists("/3ds/scummvm/saves/"); } OSystem_3DS::~OSystem_3DS() { |