aboutsummaryrefslogtreecommitdiff
path: root/engines/bbvs
diff options
context:
space:
mode:
authorEugene Sandulenko2015-11-16 07:00:58 +0100
committerEugene Sandulenko2015-11-16 07:00:58 +0100
commitb72d1b9bc75786290369d59fc6bbe96a928760fe (patch)
tree96df656e6234b79872732dee28d367434c78deab /engines/bbvs
parentcfc626d78d23ae80a69d145621942f2cae6371f4 (diff)
downloadscummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.tar.gz
scummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.tar.bz2
scummvm-rg350-b72d1b9bc75786290369d59fc6bbe96a928760fe.zip
BBVS: Add debug output
Diffstat (limited to 'engines/bbvs')
-rw-r--r--engines/bbvs/videoplayer.cpp2
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;