diff options
| author | bunnei <bunneidev@gmail.com> | 2022-04-21 21:25:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-21 21:25:47 -0700 |
| commit | a1ee9799bcd6cbf7c68733136fe7acbebf33a71a (patch) | |
| tree | 710d6e433431b875f59ba137eccac6f488493ca5 /src/core/hle/service/hid/errors.h | |
| parent | b0878863050f0bcfc23684cc3a58e8ecdb581854 (diff) | |
| parent | 1d26fabaa763560902413ac4ef024e69fe30c45a (diff) | |
Merge pull request #8222 from german77/sixaxis_test
service: hid: Improve accuracy of sixaxis functions
Diffstat (limited to 'src/core/hle/service/hid/errors.h')
| -rw-r--r-- | src/core/hle/service/hid/errors.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/errors.h b/src/core/hle/service/hid/errors.h index 3583642e7..7c5fb3e52 100644 --- a/src/core/hle/service/hid/errors.h +++ b/src/core/hle/service/hid/errors.h @@ -8,6 +8,8 @@ namespace Service::HID { -constexpr ResultCode ERR_NPAD_NOT_CONNECTED{ErrorModule::HID, 710}; +constexpr ResultCode NpadInvalidHandle{ErrorModule::HID, 100}; +constexpr ResultCode InvalidSixAxisFusionRange{ErrorModule::HID, 423}; +constexpr ResultCode NpadNotConnected{ErrorModule::HID, 710}; } // namespace Service::HID |
