aboutsummaryrefslogtreecommitdiff
path: root/backends/events
diff options
context:
space:
mode:
authorFiodar Stryzhniou2018-01-02 03:18:57 +0300
committerDavid Turner2018-01-14 06:49:54 +0000
commitc0c186d0012187b1534dc1c4a1c202c3c6f6abcf (patch)
tree53eea3c0c59ed7d04f14fd415e15c5d797f67189 /backends/events
parentdc1d9e2d6521aea75b69c03051c73b5cac9180f8 (diff)
downloadscummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.tar.gz
scummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.tar.bz2
scummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.zip
SYMBIAN: Add missed brace
Diffstat (limited to 'backends/events')
-rw-r--r--backends/events/symbiansdl/symbiansdl-events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/events/symbiansdl/symbiansdl-events.cpp b/backends/events/symbiansdl/symbiansdl-events.cpp
index 0ae5824681..fde748f444 100644
--- a/backends/events/symbiansdl/symbiansdl-events.cpp
+++ b/backends/events/symbiansdl/symbiansdl-events.cpp
@@ -124,7 +124,7 @@ bool SymbianSdlEventSource::remapKey(SDL_Event &ev, Common::Event &event) {
if (ev.type == SDL_KEYDOWN) {
for (int i = 0; i < TOTAL_ZONES; i++)
if ( (_km.x / MULTIPLIER) >= _zones[i].x && (_km.y / MULTIPLIER) >= _zones[i].y &&
- (_km.x / MULTIPLIER) <= _zones[i].x + _zones[i].width && (_km.y / MULTIPLIER <= _zones[i].y + _zones[i].height
+ (_km.x / MULTIPLIER) <= _zones[i].x + _zones[i].width && (_km.y / MULTIPLIER <= _zones[i].y + _zones[i].height)
) {
_mouseXZone[i] = _km.x / MULTIPLIER;
_mouseYZone[i] = _km.y / MULTIPLIER;