mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Disable the right mouse button on "Clickables"
This commit is contained in:
parent
19f4b22a56
commit
c250838167
@ -250,7 +250,7 @@ bool Clickable::Touch(const TouchInput &input) {
|
||||
}
|
||||
|
||||
// Ignore buttons other than the left one.
|
||||
if ((input.flags & TOUCH_MOUSE) && input.id != 0) {
|
||||
if ((input.flags & TOUCH_MOUSE) && (input.buttons & 1) == 0) {
|
||||
return contains;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user