summaryrefslogtreecommitdiffstats
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-04-01 16:50:36 +0200
committerbunnei <bunneidev@gmail.com>2016-04-01 16:50:36 +0200
commit9d7028bcfba061c6e7b305be3d972b9ea2a3d299 (patch)
treea48352b8bddfa01963711898d6d3fb7ebb74ea20 /src/core/hle/result.h
parentMerge pull request #1622 from JayFoxRox/fix-warnings (diff)
parentGSP: Return proper error codes for register writes (diff)
downloadyuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar.gz
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar.bz2
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar.lz
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar.xz
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.tar.zst
yuzu-9d7028bcfba061c6e7b305be3d972b9ea2a3d299.zip
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r--src/core/hle/result.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 0cb76ba1c..2d22652d9 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -24,6 +24,7 @@ enum class ErrorDescription : u32 {
FS_InvalidOpenFlags = 230,
FS_NotAFile = 250,
FS_NotFormatted = 340, ///< This is used by the FS service when creating a SaveData archive
+ OutofRangeOrMisalignedAddress = 513, // TODO(purpasmart): Check if this name fits its actual usage
FS_InvalidPath = 702,
InvalidSection = 1000,
TooLarge = 1001,