aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/gfx.cpp5
-rw-r--r--scumm/script_v72he.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 779993a8f0..9dd24fb582 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -631,6 +631,11 @@ void ScummEngine::redrawBGAreas() {
}
void ScummEngine_v70he::redrawBGAreas() {
+ if (_heversion == 70) {
+ ScummEngine::redrawBGAreas();
+ return;
+ }
+
int val = 0;
if (camera._cur.x != camera._last.x && _charset->_hasMask)
stopTalk();
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 50426569b4..7244be412b 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -925,7 +925,7 @@ void ScummEngine_v72he::captureWizImage(int resType, int resNum, const Common::R
int w = rCapt.width();
int h = rCapt.height();
- int tColor = VAR(VAR_WIZ_TCOLOR);
+ int tColor = (VAR_WIZ_TCOLOR != 0xFF) ? VAR(VAR_WIZ_TCOLOR) : 5;
// compute compressed size
int dataSize = 0;