[Scummvm-cvs-logs] scummvm master -> e6236293f99c3561c24898969efafaff0974130e

Kirben kirben at optusnet.com.au
Fri Feb 28 10:14:29 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e6236293f9 BBVS: Fix compilation.


Commit: e6236293f99c3561c24898969efafaff0974130e
    https://github.com/scummvm/scummvm/commit/e6236293f99c3561c24898969efafaff0974130e
Author: Kirben (kirben at optusnet.com.au)
Date: 2014-02-28T01:13:49-08:00

Commit Message:
BBVS: Fix compilation.

Changed paths:
    engines/bbvs/videoplayer.cpp



diff --git a/engines/bbvs/videoplayer.cpp b/engines/bbvs/videoplayer.cpp
index eb16261..fda9372 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;
 	}
 






More information about the Scummvm-git-logs mailing list