mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-26 20:17:52 -05:00
kraken: Address comments from review
Fix compiler bug
This commit is contained in:
@ -345,7 +345,7 @@ void Controller_NPad::RequestPadStateUpdate(Core::HID::NpadIdType npad_id) {
|
||||
constexpr btn right_button_mask = btn::A | btn::B | btn::X | btn::Y | btn::StickR | btn::R |
|
||||
btn::ZR | btn::Plus | btn::StickRLeft | btn::StickRUp |
|
||||
btn::StickRRight | btn::StickRDown;
|
||||
pad_entry.npad_buttons.raw |= button_state.raw & right_button_mask;
|
||||
pad_entry.npad_buttons.raw = button_state.raw & right_button_mask;
|
||||
pad_entry.r_stick = stick_state.right;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user