summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/errors.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-12 17:06:24 +0100
committerGitHub <noreply@github.com>2023-12-12 17:06:24 +0100
commit5c840334b8c1fae4e54986768a46e46a350b6318 (patch)
treebe0c2b388d9c2952546764082bceba98fb02d423 /src/core/hle/service/hid/errors.h
parentMerge pull request #12322 from liamwhite/savedata-absurdity (diff)
parentservice: hid: Improve CreateAppletResource implementation and free resources (diff)
downloadyuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar.gz
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar.bz2
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar.lz
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar.xz
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.tar.zst
yuzu-5c840334b8c1fae4e54986768a46e46a350b6318.zip
Diffstat (limited to 'src/core/hle/service/hid/errors.h')
-rw-r--r--src/core/hle/service/hid/errors.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/errors.h b/src/core/hle/service/hid/errors.h
index f00cb831f..6dc976fe1 100644
--- a/src/core/hle/service/hid/errors.h
+++ b/src/core/hle/service/hid/errors.h
@@ -20,6 +20,9 @@ constexpr Result InvalidNpadId{ErrorModule::HID, 709};
constexpr Result NpadNotConnected{ErrorModule::HID, 710};
constexpr Result InvalidArraySize{ErrorModule::HID, 715};
+constexpr Result ResultAppletResourceOverflow{ErrorModule::HID, 1041};
+constexpr Result ResultAppletResourceNotInitialized{ErrorModule::HID, 1042};
+constexpr Result ResultSharedMemoryNotInitialized{ErrorModule::HID, 1043};
constexpr Result ResultAruidNoAvailableEntries{ErrorModule::HID, 1044};
constexpr Result ResultAruidAlreadyRegistered{ErrorModule::HID, 1046};
constexpr Result ResultAruidNotRegistered{ErrorModule::HID, 1047};