diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-06-01 00:48:49 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-06-01 00:48:49 +0200 |
commit | 612fe6a9c2f97f20a1be255e188cd46d63c7175b (patch) | |
tree | 09eefd0b6a07419422485b72df11dd962c3edd98 /include/GlobalHotkeys | |
parent | 57448f65797f7726a53387c804fb3f5cc04e292f (diff) |
Workaround weird steam input (in-game) behavior where steam triggers playstation button + options when pressing both l3 and r3 at the same timeHEADmaster
Diffstat (limited to 'include/GlobalHotkeys')
-rw-r--r-- | include/GlobalHotkeys/GlobalHotkeysJoystick.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/GlobalHotkeys/GlobalHotkeysJoystick.hpp b/include/GlobalHotkeys/GlobalHotkeysJoystick.hpp index 4b266cb..0177d29 100644 --- a/include/GlobalHotkeys/GlobalHotkeysJoystick.hpp +++ b/include/GlobalHotkeys/GlobalHotkeysJoystick.hpp @@ -56,6 +56,8 @@ namespace gsr { bool down_pressed = false; bool left_pressed = false; bool right_pressed = false; + bool l3_button_pressed = false; + bool r3_button_pressed = false; bool save_replay = false; bool save_1_min_replay = false; |