summaryrefslogtreecommitdiff
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-11-15 23:27:29 -0500
committerGravatar Lioncash2018-11-16 00:13:50 -0500
commitb725d1fdf7641661161815466a14ed7e8e26ce67 (patch)
treef7db94a9c706a192288879fc2566b70298a7605f /src/core/hle/result.h
parentFixed priority switching edge case for handheld (#1675) (diff)
downloadyuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.tar.gz
yuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.tar.xz
yuzu-b725d1fdf7641661161815466a14ed7e8e26ce67.zip
file_sys/errors: Extract FS-related error codes to file_sys/errors.h
Keeps filesystem-related error codes in one spot.
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r--src/core/hle/result.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index c6b18cfba..bfb77cc31 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -19,8 +19,6 @@
19enum class ErrorDescription : u32 { 19enum class ErrorDescription : u32 {
20 Success = 0, 20 Success = 0,
21 RemoteProcessDead = 301, 21 RemoteProcessDead = 301,
22 InvalidOffset = 6061,
23 InvalidLength = 6062,
24}; 22};
25 23
26/** 24/**