summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-13 18:18:23 +0100
committerGitHub <noreply@github.com>2017-02-13 18:18:23 +0100
commitd60767d393b0fd163d2676f649e3c209537ef884 (patch)
treefc8db322e44cb699e17081e7ed6d4f484eb4f75e /src/core/hle
parentvideo_core/shader: Document sanitized MUL operation (diff)
parentloader: use self NCCH archive (diff)
downloadyuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.gz
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.bz2
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.lz
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.xz
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.zst
yuzu-d60767d393b0fd163d2676f649e3c209537ef884.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/result.h4
-rw-r--r--src/core/hle/service/fs/archive.h2
2 files changed, 5 insertions, 1 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,
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h
index 519c1f3a9..2ea956e0b 100644
--- a/src/core/hle/service/fs/archive.h
+++ b/src/core/hle/service/fs/archive.h
@@ -26,7 +26,7 @@ namespace FS {
/// Supported archive types
enum class ArchiveIdCode : u32 {
- RomFS = 0x00000003,
+ SelfNCCH = 0x00000003,
SaveData = 0x00000004,
ExtSaveData = 0x00000006,
SharedExtSaveData = 0x00000007,