mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-30 05:34:00 +00:00
TSAGE: Fix for R2R card game mouse button handling being reversed
This commit is contained in:
parent
8b278d1cdd
commit
acc93389e9
@ -4495,7 +4495,7 @@ void Scene1337::remove() {
|
||||
|
||||
void Scene1337::process(Event &event) {
|
||||
if (event.eventType == EVENT_BUTTON_DOWN) {
|
||||
if (event.btnState != BTNSHIFT_RIGHT) {
|
||||
if (event.btnState == BTNSHIFT_RIGHT) {
|
||||
updateCursorId(R2_GLOBALS._mouseCursorId, true);
|
||||
event.handled = true;
|
||||
} else if (_delayedFunction) {
|
||||
|
Loading…
Reference in New Issue
Block a user