mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-15 20:17:58 -05:00
Enable mouse toggle buttons
This commit is contained in:
@ -67,6 +67,9 @@ public:
|
||||
*/
|
||||
void ReleaseButton(int button_);
|
||||
|
||||
[[nodiscard]] bool ToggleButton(std::size_t button_);
|
||||
[[nodiscard]] bool UnlockButton(std::size_t button_);
|
||||
|
||||
[[nodiscard]] Common::SPSCQueue<MouseStatus>& GetMouseQueue();
|
||||
[[nodiscard]] const Common::SPSCQueue<MouseStatus>& GetMouseQueue() const;
|
||||
|
||||
@ -92,6 +95,8 @@ private:
|
||||
};
|
||||
|
||||
u16 buttons{};
|
||||
u16 toggle_buttons{};
|
||||
u16 lock_buttons{};
|
||||
std::thread update_thread;
|
||||
MouseButton last_button{MouseButton::Undefined};
|
||||
std::array<MouseInfo, 5> mouse_info;
|
||||
|
Reference in New Issue
Block a user