diff options
author | Eugene Sandulenko | 2013-04-28 23:51:51 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-04-28 23:59:21 +0300 |
commit | 30f78b3f4eb75f5a7d5652b19b8ace0e06b0b6ad (patch) | |
tree | 3b9e097fbae1ac33e2bc36a11726ca30ae39f2d5 /engines/tsage/ringworld2 | |
parent | 717281734d49042c3f60c0b34fe60b3e6cb43e3e (diff) | |
download | scummvm-rg350-30f78b3f4eb75f5a7d5652b19b8ace0e06b0b6ad.tar.gz scummvm-rg350-30f78b3f4eb75f5a7d5652b19b8ace0e06b0b6ad.tar.bz2 scummvm-rg350-30f78b3f4eb75f5a7d5652b19b8ace0e06b0b6ad.zip |
TSAGE: Fixed nesting level. CID 1003636
Diffstat (limited to 'engines/tsage/ringworld2')
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_scenes1.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_scenes1.cpp b/engines/tsage/ringworld2/ringworld2_scenes1.cpp index 82356cab22..39a04834aa 100644 --- a/engines/tsage/ringworld2/ringworld2_scenes1.cpp +++ b/engines/tsage/ringworld2/ringworld2_scenes1.cpp @@ -6931,9 +6931,10 @@ void Scene1550::UnkArea1550::process(Event &event) { CursorType cursor = R2_GLOBALS._events.getCursor(); if (_areaActor._bounds.contains(event.mousePos.x + g_globals->gfxManager()._bounds.left , event.mousePos.y)) { - if (cursor == _cursorNum) + if (cursor == _cursorNum) { warning("TODO: _cursorState = ???"); R2_GLOBALS._events.setCursor(_savedCursorNum); //, _cursorState); + } } else if (event.mousePos.y < 168) { if (cursor != _cursorNum) { _savedCursorNum = cursor; |