aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-08-14 17:17:11 +0000
committerPaweł Kołodziejski2003-08-14 17:17:11 +0000
commit5922f4c3d432a0698263b0afded5ae4ebb245340 (patch)
tree3f910e18a058c0a56ae02b9ec62ee7b3b400c28f /scumm/script_v8.cpp
parent413f09eff5ad8b26dcfff3a2dc1b98b361153136 (diff)
downloadscummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.tar.gz
scummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.tar.bz2
scummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.zip
changed warning into debug in o8_startVideo func
svn-id: r9691
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp6
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;