diff options
| author | 2016-10-17 20:23:34 +0800 | |
|---|---|---|
| committer | 2016-11-19 18:24:37 +0200 | |
| commit | a879984c06baf6c4185e376dd47258bfc108dec5 (patch) | |
| tree | f8470cd6b72e9b18da75446778263fdf13644f29 /src/core/hle | |
| parent | FileSys: add SaveDataArchive (diff) | |
| download | yuzu-a879984c06baf6c4185e376dd47258bfc108dec5.tar.gz yuzu-a879984c06baf6c4185e376dd47258bfc108dec5.tar.xz yuzu-a879984c06baf6c4185e376dd47258bfc108dec5.zip | |
FileSys: add ExtSaveDataArchive
ExtSaveData is more similar to SaveData, so let it be a subclass of SaveData
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/result.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 8330894f2..a355f970a 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h | |||
| @@ -34,6 +34,7 @@ enum class ErrorDescription : u32 { | |||
| 34 | 513, // TODO(purpasmart): Check if this name fits its actual usage | 34 | 513, // TODO(purpasmart): Check if this name fits its actual usage |
| 35 | GPU_FirstInitialization = 519, | 35 | GPU_FirstInitialization = 519, |
| 36 | FS_InvalidPath = 702, | 36 | FS_InvalidPath = 702, |
| 37 | FS_WriteBeyondEnd = 705, | ||
| 37 | FS_UnsupportedOpenFlags = 760, | 38 | FS_UnsupportedOpenFlags = 760, |
| 38 | FS_UnexpectedFileOrDirectory = 770, | 39 | FS_UnexpectedFileOrDirectory = 770, |
| 39 | InvalidSection = 1000, | 40 | InvalidSection = 1000, |