aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/scumm/vars.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/vars.cpp b/engines/scumm/vars.cpp
index aade7899aa..203629def7 100644
--- a/engines/scumm/vars.cpp
+++ b/engines/scumm/vars.cpp
@@ -685,9 +685,9 @@ void ScummEngine_v99he::resetScummVars() {
VAR(VAR_NUM_PALETTES) = _numPalettes;
VAR(VAR_NUM_UNK) = _numUnk;
- if (_game.heversion >= 100) {
- // Enable Bink video
- VAR(140) = 1;
+ if (_game.heversion >= 100 && (_game.features & GF_16BIT_COLOR)) {
+ // Disable Bink and Smacker video in 16bit color games
+ VAR(140) = 0;
}
}
#endif