[Scummvm-git-logs] scummvm master -> e918a4b16ff953bf24e128d34e1132413b5d0900
ccawley2011
ccawley2011 at gmail.com
Sun Sep 13 21:20:46 UTC 2020
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:
e918a4b16f OPENPANDORA: Fix copy/paste error
Commit: e918a4b16ff953bf24e128d34e1132413b5d0900
https://github.com/scummvm/scummvm/commit/e918a4b16ff953bf24e128d34e1132413b5d0900
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2020-09-13T22:20:31+01:00
Commit Message:
OPENPANDORA: Fix copy/paste error
Changed paths:
backends/events/openpandora/op-events.cpp
diff --git a/backends/events/openpandora/op-events.cpp b/backends/events/openpandora/op-events.cpp
index af1c6760e3..9df5806bcb 100644
--- a/backends/events/openpandora/op-events.cpp
+++ b/backends/events/openpandora/op-events.cpp
@@ -87,7 +87,7 @@ bool OPEventSource::handleMouseButtonDown(SDL_Event &ev, Common::Event &event) {
bool OPEventSource::handleMouseButtonUp(SDL_Event &ev, Common::Event &event) {
if (ev.button.button != SDL_BUTTON_LEFT)
- return SdlEventSource::handleMouseButtonDown(ev, event);
+ return SdlEventSource::handleMouseButtonUp(ev, event);
if (_buttonStateL == true) /* _buttonStateL = Left Trigger Held, force Right Click */
event.type = Common::EVENT_RBUTTONUP;
More information about the Scummvm-git-logs
mailing list