diff options
author | D G Turner | 2013-07-06 04:05:22 +0100 |
---|---|---|
committer | D G Turner | 2013-07-06 04:05:22 +0100 |
commit | 9fb96a9256348c3b00b045614ddf9f8d96e833cf (patch) | |
tree | d09e4ee3c75c74d5d6aa9df1a85951b36ce10cac /audio | |
parent | 30bd58649031d3174c81cddb45a0ee44652195fd (diff) | |
download | scummvm-rg350-9fb96a9256348c3b00b045614ddf9f8d96e833cf.tar.gz scummvm-rg350-9fb96a9256348c3b00b045614ddf9f8d96e833cf.tar.bz2 scummvm-rg350-9fb96a9256348c3b00b045614ddf9f8d96e833cf.zip |
AUDIO: Further fix to ReportHandlerScummVM::printDebug in MT32 code.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/mt32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 3281e3bebf..29f5e3577c 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 |