diff options
author | Fiodar Stryzhniou | 2018-01-02 03:18:57 +0300 |
---|---|---|
committer | David Turner | 2018-01-14 06:49:54 +0000 |
commit | c0c186d0012187b1534dc1c4a1c202c3c6f6abcf (patch) | |
tree | 53eea3c0c59ed7d04f14fd415e15c5d797f67189 | |
parent | dc1d9e2d6521aea75b69c03051c73b5cac9180f8 (diff) | |
download | scummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.tar.gz scummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.tar.bz2 scummvm-rg350-c0c186d0012187b1534dc1c4a1c202c3c6f6abcf.zip |
SYMBIAN: Add missed brace
-rw-r--r-- | backends/events/symbiansdl/symbiansdl-events.cpp | 2 |
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; |