diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v8.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index a56b36d070..f019e9e343 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1229,9 +1229,9 @@ void Scumm_v8::o8_system() { void Scumm_v8::o8_startVideo() { int len = resStrLen(_scriptPointer); - - warning("o8_startVideo(%s/%s)", getGameDataPath(), (const char*)_scriptPointer); - + + debug(4, "o8_startVideo(%s/%s)", getGameDataPath(), (const char*)_scriptPointer); + SmushPlayer *sp = new SmushPlayer(this, 83333, !_noSubtitles); sp->play((const char*)_scriptPointer, getGameDataPath()); delete sp; |