diff options
author | Paweł Kołodziejski | 2003-08-14 17:17:11 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-08-14 17:17:11 +0000 |
commit | 5922f4c3d432a0698263b0afded5ae4ebb245340 (patch) | |
tree | 3f910e18a058c0a56ae02b9ec62ee7b3b400c28f | |
parent | 413f09eff5ad8b26dcfff3a2dc1b98b361153136 (diff) | |
download | scummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.tar.gz scummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.tar.bz2 scummvm-rg350-5922f4c3d432a0698263b0afded5ae4ebb245340.zip |
changed warning into debug in o8_startVideo func
svn-id: r9691
-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; |