aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
authorMax Horn2003-12-27 15:22:59 +0000
committerMax Horn2003-12-27 15:22:59 +0000
commit17c189d1f9c40e79ccddcea1a1d972b2642abe99 (patch)
tree95c851577a1acbffd338c447a85a47c7c76c48cb /scumm/script_v8.cpp
parenta567b741e7f0711909bbcaf001b4adaa7ebc54b6 (diff)
downloadscummvm-rg350-17c189d1f9c40e79ccddcea1a1d972b2642abe99.tar.gz
scummvm-rg350-17c189d1f9c40e79ccddcea1a1d972b2642abe99.tar.bz2
scummvm-rg350-17c189d1f9c40e79ccddcea1a1d972b2642abe99.zip
get rid of _noSubtitles, use ConfigManager directly instead; clean up some IMuseDigital oddities
svn-id: r11966
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 9d5822db0a..36cb2cfcc5 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -1244,7 +1244,7 @@ void ScummEngine_v8::o8_startVideo() {
debug(4, "o8_startVideo(%s/%s)", getGameDataPath(), (const char*)_scriptPointer);
- SmushPlayer *sp = new SmushPlayer(this, 83333, !_noSubtitles);
+ SmushPlayer *sp = new SmushPlayer(this, 83333);
sp->play((const char*)_scriptPointer, getGameDataPath());
delete sp;