diff options
author | Travis Howell | 2003-09-11 12:48:02 +0000 |
---|---|---|
committer | Travis Howell | 2003-09-11 12:48:02 +0000 |
commit | a323d65cc388245a2396721804684927bc08e556 (patch) | |
tree | 835ca92e3d5e5149b2e44501125a0dec7b4b45a3 | |
parent | 81f10baa68d36f42f4988b971dff312439906a2f (diff) | |
download | scummvm-rg350-a323d65cc388245a2396721804684927bc08e556.tar.gz scummvm-rg350-a323d65cc388245a2396721804684927bc08e556.tar.bz2 scummvm-rg350-a323d65cc388245a2396721804684927bc08e556.zip |
Should redraw in both cases.
svn-id: r10170
-rw-r--r-- | scumm/script_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 3d0989e077..21bb3b2eb0 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -1361,8 +1361,8 @@ void Scumm_v2::o2_roomOps() { _roomPalette[2] = b; } else { _roomPalette[b] = a; - _fullRedraw = true; } + _fullRedraw = true; break; } } |