Skip to content

Commit

Permalink
BBVS: Fix compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirben committed Feb 28, 2014
1 parent 5917282 commit e623629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/bbvs/videoplayer.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit e623629

Please sign in to comment.