summaryrefslogtreecommitdiffstats
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-10 23:26:09 +0100
committerLioncash <mathew1800@gmail.com>2019-03-10 23:26:12 +0100
commitf7ec0bcfc2e638530af3254386917e2d39a25e9c (patch)
tree8d1236145faeec66e56554ef45b1fcf9ce654978 /src/core/hle/result.h
parentcore/hle/result: Relocate IPC error code to ipc_helpers (diff)
downloadyuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar.gz
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar.bz2
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar.lz
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar.xz
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.tar.zst
yuzu-f7ec0bcfc2e638530af3254386917e2d39a25e9c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/result.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h
index 9f6ac39e6..fca07532e 100644
--- a/src/core/hle/result.h
+++ b/src/core/hle/result.h
@@ -13,13 +13,6 @@
// All the constants in this file come from http://switchbrew.org/index.php?title=Error_codes
/**
- * Detailed description of the error. Code 0 always means success.
- */
-enum class ErrorDescription : u32 {
- Success = 0,
-};
-
-/**
* Identifies the module which caused the error. Error codes can be propagated through a call
* chain, meaning that this doesn't always correspond to the module where the API call made is
* contained.
@@ -132,9 +125,6 @@ union ResultCode {
constexpr explicit ResultCode(u32 raw) : raw(raw) {}
- constexpr ResultCode(ErrorModule module, ErrorDescription description)
- : ResultCode(module, static_cast<u32>(description)) {}
-
constexpr ResultCode(ErrorModule module_, u32 description_)
: raw(module.FormatValue(module_) | description.FormatValue(description_)) {}