diff options
Diffstat (limited to 'engines/sci/gui/gui.cpp')
| -rw-r--r-- | engines/sci/gui/gui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index c6ca37427e..7b5769130c 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -296,12 +296,12 @@ void SciGui::textColors(int argc, reg_t *argv) { void SciGui::drawStatus(const char *text, int16 colorPen, int16 colorBack) { GuiPort *oldPort = _gfx->SetPort(_gfx->_menuPort); - _gfx->FillRect(_gfx->_menuRect, 1, colorBack); + _gfx->FillRect(_gfx->_menuBarRect, 1, colorBack); _gfx->PenColor(colorPen); _gfx->MoveTo(0, 1); _text->Draw_String(text); if (_screen->_picNotValid == 0) - _gfx->BitsShow(_gfx->_menuRect); + _gfx->BitsShow(_gfx->_menuBarRect); _gfx->SetPort(oldPort); } @@ -310,7 +310,7 @@ void SciGui::drawMenuBar(bool clear) { GuiPort *oldPort = _gfx->SetPort(_gfx->_menuPort); _menu->drawBar(); if (_screen->_picNotValid == 0) - _gfx->BitsShow(_gfx->_menuRect); + _gfx->BitsShow(_gfx->_menuBarRect); _gfx->SetPort(oldPort); } else { drawStatus("", 0, 0); |
