summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/errors.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-02-08 16:09:26 +0100
committerGitHub <noreply@github.com>2023-02-08 16:09:26 +0100
commitf6477b91f9abe4ad4b4101f9f80ddb3412462a5d (patch)
treef7fcacd7425bc75629ae8dffc7df708d54d4adb0 /src/core/hle/service/hid/errors.h
parentMerge pull request #9739 from liamwhite/old-gcc-fix (diff)
parentservice: hid: Return error if arguments of SetSupportedNpadIdType is invalid (diff)
downloadyuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar.gz
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar.bz2
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar.lz
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar.xz
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.tar.zst
yuzu-f6477b91f9abe4ad4b4101f9f80ddb3412462a5d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/errors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/errors.h b/src/core/hle/service/hid/errors.h
index 76208e9a4..9585bdaf0 100644
--- a/src/core/hle/service/hid/errors.h
+++ b/src/core/hle/service/hid/errors.h
@@ -18,6 +18,7 @@ constexpr Result NpadIsDualJoycon{ErrorModule::HID, 601};
constexpr Result NpadIsSameType{ErrorModule::HID, 602};
constexpr Result InvalidNpadId{ErrorModule::HID, 709};
constexpr Result NpadNotConnected{ErrorModule::HID, 710};
+constexpr Result InvalidArraySize{ErrorModule::HID, 715};
constexpr Result InvalidPalmaHandle{ErrorModule::HID, 3302};
} // namespace Service::HID