aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Hamm2002-02-19 21:20:26 +0000
committerVincent Hamm2002-02-19 21:20:26 +0000
commit38325e4e6d8c49406ec8bee5aa329989d4b18978 (patch)
tree1e1776465e37fade488ca83b2171663020958941
parentd352341269dc0adab04684249dee8e66bb755081 (diff)
downloadscummvm-rg350-38325e4e6d8c49406ec8bee5aa329989d4b18978.tar.gz
scummvm-rg350-38325e4e6d8c49406ec8bee5aa329989d4b18978.tar.bz2
scummvm-rg350-38325e4e6d8c49406ec8bee5aa329989d4b18978.zip
Fixed the resore text background bug
svn-id: r3610
-rw-r--r--gfx.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/gfx.cpp b/gfx.cpp
index 500e38b0b7..b1d19ad49e 100644
--- a/gfx.cpp
+++ b/gfx.cpp
@@ -1391,6 +1391,10 @@ void Gdi::unkDecode11() {
void Scumm::restoreCharsetBg() {
_bkColor = 0;
+ if (_features & GF_OLD256) {
+ restoreBG(0,0,320,16);
+ restoreBG(0,144,320,200);
+ }
if (gdi._mask_left != -1) {
restoreBG(gdi._mask_left, gdi._mask_top, gdi._mask_right, gdi._mask_bottom);
charset._hasMask = false;