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

This commit is contained in:
Paul Gilbert 2013-12-15 09:02:42 -05:00
parent 8b278d1cdd
commit acc93389e9

View File

@ -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) {