summaryrefslogtreecommitdiffstats
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2017-02-10 16:09:18 +0100
committerwwylele <wwylele@gmail.com>2017-02-13 12:57:38 +0100
commita0df747325291ba38f0383df4cbd8ff3408c636e (patch)
tree5f9b08e071c2d1025ef854ba09028d2217653b07 /src/core/hle/result.h
parentMerge pull request #2482 from yuriks/pica-refactor (diff)
downloadyuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar.gz
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar.bz2
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar.lz
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar.xz
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.tar.zst
yuzu-a0df747325291ba38f0383df4cbd8ff3408c636e.zip
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r--src/core/hle/result.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 53864a3a7..cfefbbc64 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -20,6 +20,7 @@ enum class ErrorDescription : u32 {
OS_InvalidBufferDescriptor = 48,
MaxConnectionsReached = 52,
WrongAddress = 53,
+ FS_RomFSNotFound = 100,
FS_ArchiveNotMounted = 101,
FS_FileNotFound = 112,
FS_PathNotFound = 113,
@@ -35,10 +36,13 @@ enum class ErrorDescription : u32 {
OutofRangeOrMisalignedAddress =
513, // TODO(purpasmart): Check if this name fits its actual usage
GPU_FirstInitialization = 519,
+ FS_ExeFSSectionNotFound = 567,
+ FS_CommandNotAllowed = 630,
FS_InvalidReadFlag = 700,
FS_InvalidPath = 702,
FS_WriteBeyondEnd = 705,
FS_UnsupportedOpenFlags = 760,
+ FS_IncorrectExeFSReadSize = 761,
FS_UnexpectedFileOrDirectory = 770,
InvalidSection = 1000,
TooLarge = 1001,