diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-01-12 10:02:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-12 10:02:13 -0500 |
| commit | f7a3c135e2f17cc00d1f006146afc73a21408e3a (patch) | |
| tree | f5439b576b7ba8e2d6835b49d45a558c66121ae7 /src/hid_core/resources/npad/npad_data.cpp | |
| parent | fcb0dff67ce18bde935fa1d79f653ae418dced8d (diff) | |
| parent | b5dac5f525e8d5884506ebd98a530e237b518480 (diff) | |
Merge pull request #12605 from german77/abstract
service: hid: Create abstracted pad structure
Diffstat (limited to 'src/hid_core/resources/npad/npad_data.cpp')
| -rw-r--r-- | src/hid_core/resources/npad/npad_data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hid_core/resources/npad/npad_data.cpp b/src/hid_core/resources/npad/npad_data.cpp index c7e9760cb..29ad5cb08 100644 --- a/src/hid_core/resources/npad/npad_data.cpp +++ b/src/hid_core/resources/npad/npad_data.cpp @@ -151,7 +151,7 @@ Core::HID::NpadStyleSet NPadData::GetSupportedNpadStyleSet() const { bool NPadData::IsNpadStyleIndexSupported(Core::HID::NpadStyleIndex style_index) const { Core::HID::NpadStyleTag style = {supported_npad_style_set}; switch (style_index) { - case Core::HID::NpadStyleIndex::ProController: + case Core::HID::NpadStyleIndex::Fullkey: return style.fullkey.As<bool>(); case Core::HID::NpadStyleIndex::Handheld: return style.handheld.As<bool>(); |
