diff options
| author | Kirben | 2014-02-28 20:13:49 +1100 |
|---|---|---|
| committer | Kirben | 2014-02-28 20:13:49 +1100 |
| commit | e6236293f99c3561c24898969efafaff0974130e (patch) | |
| tree | e9b392b5232768b8de3ba9c1ec0e1434620f8794 | |
| parent | 591728227e156129e5a9ab549da9390348dfdc7c (diff) | |
| download | scummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.tar.gz scummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.tar.bz2 scummvm-rg350-e6236293f99c3561c24898969efafaff0974130e.zip | |
BBVS: Fix compilation.
| -rw-r--r-- | engines/bbvs/videoplayer.cpp | 2 |
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; } |
