diff options
author | LC <mathew1800@gmail.com> | 2020-12-01 15:40:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 15:40:46 +0100 |
commit | d39dfdf45c1205b9afaf3927bcbe81b057995176 (patch) | |
tree | 24a56c98498861abeab6c495e7d4b36c9450f576 | |
parent | Merge pull request #5013 from ReinUsesLisp/vk-early-z (diff) | |
parent | Fix implicit conversion in mouse input (diff) | |
download | yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar.gz yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar.bz2 yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar.lz yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar.xz yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.tar.zst yuzu-d39dfdf45c1205b9afaf3927bcbe81b057995176.zip |
-rw-r--r-- | src/input_common/mouse/mouse_input.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/input_common/mouse/mouse_input.cpp b/src/input_common/mouse/mouse_input.cpp index 3f4264caa..d0ee64ad7 100644 --- a/src/input_common/mouse/mouse_input.cpp +++ b/src/input_common/mouse/mouse_input.cpp @@ -54,12 +54,13 @@ void Mouse::PressButton(int x, int y, int button_) { } int button = 1 << button_; + const auto button_index = static_cast<std::size_t>(button_); buttons |= static_cast<u16>(button); last_button = static_cast<MouseButton>(button_); - mouse_info[button_].mouse_origin = Common::MakeVec(x, y); - mouse_info[button_].last_mouse_position = Common::MakeVec(x, y); - mouse_info[button_].data.pressed = true; + mouse_info[button_index].mouse_origin = Common::MakeVec(x, y); + mouse_info[button_index].last_mouse_position = Common::MakeVec(x, y); + mouse_info[button_index].data.pressed = true; } void Mouse::MouseMove(int x, int y) { @@ -86,11 +87,12 @@ void Mouse::ReleaseButton(int button_) { } int button = 1 << button_; + const auto button_index = static_cast<std::size_t>(button_); buttons &= static_cast<u16>(0xFF - button); - mouse_info[button_].tilt_speed = 0; - mouse_info[button_].data.pressed = false; - mouse_info[button_].data.axis = {0, 0}; + mouse_info[button_index].tilt_speed = 0; + mouse_info[button_index].data.pressed = false; + mouse_info[button_index].data.axis = {0, 0}; } void Mouse::BeginConfiguration() { |