aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirben2014-02-28 20:13:49 +1100
committerKirben2014-02-28 20:13:49 +1100
commite6236293f99c3561c24898969efafaff0974130e (patch)
treee9b392b5232768b8de3ba9c1ec0e1434620f8794
parent591728227e156129e5a9ab549da9390348dfdc7c (diff)
downloadscummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.tar.gz
scummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.tar.bz2
scummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.zip
BBVS: Fix compilation.
-rw-r--r--engines/bbvs/videoplayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bbvs/videoplayer.cpp b/engines/bbvs/videoplayer.cpp
index eb162612f2..fda9372ade 100644
--- a/engines/bbvs/videoplayer.cpp
+++ b/engines/bbvs/videoplayer.cpp
@@ -46,7 +46,7 @@ void BbvsEngine::playVideo(int videoNum) {
Video::VideoDecoder *videoDecoder = new Video::AVIDecoder();
if (!videoDecoder->loadFile(videoFilename)) {
delete videoDecoder;
- warning("Unable to open video %s", videoFilename);
+ warning("Unable to open video %s", videoFilename.c_str());
return;
}