[Scummvm-cvs-logs] scummvm master -> acc93389e9f0e08b1fef906c3cf9dc59b43f21ce

dreammaster dreammaster at scummvm.org
Sun Dec 15 15:15:20 CET 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
acc93389e9 TSAGE: Fix for R2R card game mouse button handling being reversed


Commit: acc93389e9f0e08b1fef906c3cf9dc59b43f21ce
    https://github.com/scummvm/scummvm/commit/acc93389e9f0e08b1fef906c3cf9dc59b43f21ce
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2013-12-15T06:02:42-08:00

Commit Message:
TSAGE: Fix for R2R card game mouse button handling being reversed

Changed paths:
    engines/tsage/ringworld2/ringworld2_scenes1.cpp



diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
index 76225e3..f5a4cde 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp
@@ -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) {






More information about the Scummvm-git-logs mailing list