diff options
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 | } |