diff options
Diffstat (limited to 'engines/saga/scene.h')
-rw-r--r-- | engines/saga/scene.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/saga/scene.h b/engines/saga/scene.h index 5b2d78ff37..2410f672e5 100644 --- a/engines/saga/scene.h +++ b/engines/saga/scene.h @@ -324,9 +324,7 @@ class Scene { void drawTextList(Surface *ds); int getHeight() const { - if (_vm->_interface->getMode() == kPanelChapterSelection) - return _vm->getDisplayInfo().logicalHeight; - else if (_vm->getGameType() == GType_IHNM && _vm->_scene->currentChapterNumber() == 8) + if (_vm->getGameType() == GType_IHNM && _vm->_scene->currentChapterNumber() == 8) return _vm->getDisplayInfo().logicalHeight; else return _vm->getDisplayInfo().sceneHeight; |