[Scummvm-cvs-logs] scummvm master -> 9fb96a9256348c3b00b045614ddf9f8d96e833cf

digitall dgturner at iee.org
Sat Jul 6 05:06:41 CEST 2013


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:
9fb96a9256 AUDIO: Further fix to ReportHandlerScummVM::printDebug in MT32 code.


Commit: 9fb96a9256348c3b00b045614ddf9f8d96e833cf
    https://github.com/scummvm/scummvm/commit/9fb96a9256348c3b00b045614ddf9f8d96e833cf
Author: D G Turner (digitall at scummvm.org)
Date: 2013-07-05T20:05:22-07:00

Commit Message:
AUDIO: Further fix to ReportHandlerScummVM::printDebug in MT32 code.

Changed paths:
    audio/softsynth/mt32.cpp



diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp
index 3281e3b..29f5e35 100644
--- a/audio/softsynth/mt32.cpp
+++ b/audio/softsynth/mt32.cpp
@@ -63,7 +63,7 @@ protected:
 	// Callback for debug messages, in vprintf() format
 	void printDebug(const char *fmt, va_list list) {
 		Common::String out = Common::String::vformat(fmt, list);
-		debug(4, out.c_str());
+		debug(4, "%s", out.c_str());
 	}
 
 	// Callbacks for reporting various errors and information






More information about the Scummvm-git-logs mailing list