diff options
| author | 2023-05-12 16:42:17 -0700 | |
|---|---|---|
| committer | 2023-05-12 16:42:17 -0700 | |
| commit | 021e503cc8ea56d4743a6512eee770020f62ea83 (patch) | |
| tree | 8048d14b3075aa00ac1bce9e903c98f1864d0a94 /src/core/file_sys | |
| parent | Merge pull request #10236 from liamwhite/thats-not-an-ibinder (diff) | |
| parent | fs: adjust future save path (diff) | |
| download | yuzu-021e503cc8ea56d4743a6512eee770020f62ea83.tar.gz yuzu-021e503cc8ea56d4743a6512eee770020f62ea83.tar.xz yuzu-021e503cc8ea56d4743a6512eee770020f62ea83.zip | |
Merge pull request #10237 from liamwhite/cache-storage
fs: stub cache storage
Diffstat (limited to 'src/core/file_sys')
| -rw-r--r-- | src/core/file_sys/savedata_factory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/savedata_factory.cpp b/src/core/file_sys/savedata_factory.cpp index 769065b6f..70b36f170 100644 --- a/src/core/file_sys/savedata_factory.cpp +++ b/src/core/file_sys/savedata_factory.cpp | |||
| @@ -82,9 +82,9 @@ std::string GetFutureSaveDataPath(SaveDataSpaceId space_id, SaveDataType type, u | |||
| 82 | // Only detect account/device saves from the future location. | 82 | // Only detect account/device saves from the future location. |
| 83 | switch (type) { | 83 | switch (type) { |
| 84 | case SaveDataType::SaveData: | 84 | case SaveDataType::SaveData: |
| 85 | return fmt::format("{}/account/{}/{:016X}/1", space_id_path, uuid.RawString(), title_id); | 85 | return fmt::format("{}/account/{}/{:016X}/0", space_id_path, uuid.RawString(), title_id); |
| 86 | case SaveDataType::DeviceSaveData: | 86 | case SaveDataType::DeviceSaveData: |
| 87 | return fmt::format("{}/device/{:016X}/1", space_id_path, title_id); | 87 | return fmt::format("{}/device/{:016X}/0", space_id_path, title_id); |
| 88 | default: | 88 | default: |
| 89 | return ""; | 89 | return ""; |
| 90 | } | 90 | } |