diff options
author | Paul Gilbert | 2013-07-04 09:07:15 -0400 |
---|---|---|
committer | Paul Gilbert | 2013-07-04 09:07:15 -0400 |
commit | afdb007e2e158efa4a9a1098f80ff224d0038729 (patch) | |
tree | bc4df24934df817cb9fbab826c924d293f9e8b6d | |
parent | fa737fd5af3763a152e92c4b74c114876b3a8573 (diff) | |
parent | d7ff665737b3144b00d4808043402e1317ee234c (diff) | |
download | scummvm-rg350-afdb007e2e158efa4a9a1098f80ff224d0038729.tar.gz scummvm-rg350-afdb007e2e158efa4a9a1098f80ff224d0038729.tar.bz2 scummvm-rg350-afdb007e2e158efa4a9a1098f80ff224d0038729.zip |
Merge branch 'master' of https://github.com/scummvm/scummvm
-rw-r--r-- | audio/softsynth/mt32.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 00d0469356..3281e3bebf 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -62,7 +62,8 @@ protected: // Callback for debug messages, in vprintf() format void printDebug(const char *fmt, va_list list) { - debug(4, fmt, list); + Common::String out = Common::String::vformat(fmt, list); + debug(4, out.c_str()); } // Callbacks for reporting various errors and information |