diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-11-08 01:07:14 +1100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-11-08 01:07:14 +1100 |
commit | a9c25ab9e4cd02301b394aba40c974936c2d78b3 (patch) | |
tree | 91bf2466b07f672cde211002639ebdd3e5706429 /src | |
parent | 81ff9e2473125c78ac07e15b64bf26d49d2472d9 (diff) |
Updated npad styles on holdtype switches
Fixes input for megaman
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid/controllers/npad.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp index 1ef789bd0..ff9b64be4 100644 --- a/src/core/hle/service/hid/controllers/npad.cpp +++ b/src/core/hle/service/hid/controllers/npad.cpp @@ -392,8 +392,10 @@ std::size_t Controller_NPad::GetSupportedNPadIdTypesSize() const { } void Controller_NPad::SetHoldType(NpadHoldType joy_hold_type) { + styleset_changed_event->Signal(); hold_type = joy_hold_type; } + Controller_NPad::NpadHoldType Controller_NPad::GetHoldType() const { return hold_type; } |