aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-11-01 23:42:21 +0000
committerTravis Howell2006-11-01 23:42:21 +0000
commita448ed320f8dc9cedba6681b976eb61c8217b2ea (patch)
tree5ece6b12404ac9718600965153ec3e3da1fd8fe7 /engines
parentc3f6c576806cfba9c46ddf0eedaf6cd9cef4cc06 (diff)
downloadscummvm-rg350-a448ed320f8dc9cedba6681b976eb61c8217b2ea.tar.gz
scummvm-rg350-a448ed320f8dc9cedba6681b976eb61c8217b2ea.tar.bz2
scummvm-rg350-a448ed320f8dc9cedba6681b976eb61c8217b2ea.zip
Ooops, move code to correct function
svn-id: r24585
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/vars.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/scumm/vars.cpp b/engines/scumm/vars.cpp
index 70284e0edf..8d2543b0a3 100644
--- a/engines/scumm/vars.cpp
+++ b/engines/scumm/vars.cpp
@@ -330,10 +330,6 @@ void ScummEngine_v90he::setupScummVars() {
VAR_NUM_PALETTES = 130;
VAR_NUM_UNK = 131;
}
- if (_game.heversion >= 100) {
- // Enable Bink video
- VAR(140) = 1;
- }
}
#endif
@@ -688,6 +684,11 @@ void ScummEngine_v99he::resetScummVars() {
VAR(VAR_NUM_PALETTES) = _numPalettes;
VAR(VAR_NUM_UNK) = _numUnk;
+
+ if (_game.heversion >= 100) {
+ // Enable Bink video
+ VAR(140) = 1;
+ }
}
#endif