diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-07 18:43:55 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-07 18:52:18 -0500 |
commit | a4eaa6782f75d4a403263a09b8f30d6426e66eaf (patch) | |
tree | 6e2434b12ef6822033082bbb8df680f88ac50a4b /src | |
parent | 4c106b43a9cb41f22935b4405373ca05a15dc7a9 (diff) |
file_sys/save_data_factory: Update SaveDataSpaceId enum
Amends it with missing values deduced from RE (ProperSystem being from
SwitchBrew for naming)
(SdCardUser wasn't that difficult to discern given it's used alongside
SdCardSystem when creating the save data indexer, based off the usage of
the string "saveDataIxrDbSd" nearby).
Diffstat (limited to 'src')
-rw-r--r-- | src/core/file_sys/savedata_factory.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/file_sys/savedata_factory.h b/src/core/file_sys/savedata_factory.h index 2a0088040..bd4919610 100644 --- a/src/core/file_sys/savedata_factory.h +++ b/src/core/file_sys/savedata_factory.h @@ -17,8 +17,10 @@ namespace FileSys { enum class SaveDataSpaceId : u8 { NandSystem = 0, NandUser = 1, - SdCard = 2, + SdCardSystem = 2, TemporaryStorage = 3, + SdCardUser = 4, + ProperSystem = 100, }; enum class SaveDataType : u8 { |