diff options
author | Eugene Sandulenko | 2015-11-16 07:00:58 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-11-16 07:00:58 +0100 |
commit | b72d1b9bc75786290369d59fc6bbe96a928760fe (patch) | |
tree | 96df656e6234b79872732dee28d367434c78deab | |
parent | cfc626d78d23ae80a69d145621942f2cae6371f4 (diff) | |
download | scummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.tar.gz scummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.tar.bz2 scummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.zip |
BBVS: Add debug output
-rw-r--r-- | engines/bbvs/videoplayer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/bbvs/videoplayer.cpp b/engines/bbvs/videoplayer.cpp index 0594db8990..f417f275bf 100644 --- a/engines/bbvs/videoplayer.cpp +++ b/engines/bbvs/videoplayer.cpp @@ -43,6 +43,8 @@ void BbvsEngine::playVideo(int videoNum) { return; } + debug(0, "Screen format: %s", _system->getScreenFormat().toString().c_str()); + Video::VideoDecoder *videoDecoder = new Video::AVIDecoder(); if (!videoDecoder->loadFile(videoFilename)) { delete videoDecoder; |