aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2004-10-17 19:40:34 +0000
committerMax Horn2004-10-17 19:40:34 +0000
commitea9d53be79084ca212c5fca6b151f84ff1940647 (patch)
tree64ae78ee4aef716616c31257ef17557d117cf098 /gui
parent42909eb0b03f569b789db9001b29e885f8adc1ad (diff)
downloadscummvm-rg350-ea9d53be79084ca212c5fca6b151f84ff1940647.tar.gz
scummvm-rg350-ea9d53be79084ca212c5fca6b151f84ff1940647.tar.bz2
scummvm-rg350-ea9d53be79084ca212c5fca6b151f84ff1940647.zip
cleanup
svn-id: r15597
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index ab9d91c8f1..4d9ec7f1b0 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -133,7 +133,7 @@ void NewGui::runLoop() {
break;
// We don't distinguish between mousebuttons (for now at least)
case OSystem::EVENT_LBUTTONDOWN:
- case OSystem::EVENT_RBUTTONDOWN: {
+ case OSystem::EVENT_RBUTTONDOWN:
if (_lastClick.count && (time < _lastClick.time + kDoubleClickDelay)
&& ABS(_lastClick.x - event.mouse.x) < 3
&& ABS(_lastClick.y - event.mouse.y) < 3) {
@@ -144,7 +144,6 @@ void NewGui::runLoop() {
_lastClick.count = 1;
}
_lastClick.time = time;
- }
activeDialog->handleMouseDown(event.mouse.x - activeDialog->_x, event.mouse.y - activeDialog->_y, 1, _lastClick.count);
break;
case OSystem::EVENT_LBUTTONUP: