diff options
author | Martin Kiewitz | 2010-01-19 19:28:54 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-19 19:28:54 +0000 |
commit | adc6e33f5b9d1a1421302f9269513e9ab9b347bb (patch) | |
tree | cc99bbb4df785e0e9dd775b293a05f947494f731 /engines/sci/graphics | |
parent | 3738507d7fac1b9a349e658e59eb6532a63fa9c5 (diff) | |
download | scummvm-rg350-adc6e33f5b9d1a1421302f9269513e9ab9b347bb.tar.gz scummvm-rg350-adc6e33f5b9d1a1421302f9269513e9ab9b347bb.tar.bz2 scummvm-rg350-adc6e33f5b9d1a1421302f9269513e9ab9b347bb.zip |
SCI: also fix statusbar
svn-id: r47389
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/gui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/graphics/gui.cpp b/engines/sci/graphics/gui.cpp index 806b3046da..ae73419f6c 100644 --- a/engines/sci/graphics/gui.cpp +++ b/engines/sci/graphics/gui.cpp @@ -318,8 +318,7 @@ void SciGui::drawStatus(const char *text, int16 colorPen, int16 colorBack) { _gfx->PenColor(colorPen); _gfx->MoveTo(0, 1); _text->Draw_String(text); - if (_screen->_picNotValid == 0) - _gfx->BitsShow(_gfx->_menuBarRect); + _gfx->BitsShow(_gfx->_menuBarRect); _gfx->SetPort(oldPort); } |