diff options
author | Vincent Hamm | 2002-02-14 15:09:40 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-02-14 15:09:40 +0000 |
commit | 72d4b02cb0bf2f514e1ba3544b7f5c5250a07849 (patch) | |
tree | 1949464e7353efdafb1c8e733fc48979599d4979 | |
parent | c88e7351b4233b079e934e87945c8efb2539b38a (diff) | |
download | scummvm-rg350-72d4b02cb0bf2f514e1ba3544b7f5c5250a07849.tar.gz scummvm-rg350-72d4b02cb0bf2f514e1ba3544b7f5c5250a07849.tar.bz2 scummvm-rg350-72d4b02cb0bf2f514e1ba3544b7f5c5250a07849.zip |
Little fix for the Loom room
svn-id: r3578
-rw-r--r-- | script_v1.cpp | 2 | ||||
-rw-r--r-- | scummvm.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/script_v1.cpp b/script_v1.cpp index e27783b667..3132e9cf07 100644 --- a/script_v1.cpp +++ b/script_v1.cpp @@ -1409,7 +1409,7 @@ void Scumm::o5_roomOps() { b = getVarOrDirectWord(0x40); checkRange(256, 0, a, "o5_roomOps: 2: Illegal room color slot (%d)"); _currentPalette[a]=b; /*FIXME: should be shadow palette */ - _fullRedraw = 1; + // _fullRedraw = 1; } else { a = getVarOrDirectWord(0x80); b = getVarOrDirectWord(0x40); diff --git a/scummvm.cpp b/scummvm.cpp index 6fbfd17c34..3a1626a02a 100644 --- a/scummvm.cpp +++ b/scummvm.cpp @@ -322,7 +322,7 @@ int Scumm::scummLoop(int delta) { camera._cur.y != camera._last.y || _BgNeedsRedraw || _fullRedraw) { #endif - redrawBGAreas(); + redrawBGAreas(); } processDrawQue(); setActorRedrawFlags(); |