aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth
diff options
context:
space:
mode:
authorD G Turner2014-07-10 23:11:20 +0100
committerD G Turner2014-07-10 23:11:20 +0100
commit6731eb21e3e4c1fa2470ed03a3547d45b3dff6e3 (patch)
tree0493f18bc5a77da8002f243abb4551065eb2c65b /audio/softsynth
parentb30e8e5f531374b7f6f3200b11b9ed55cc52dd66 (diff)
downloadscummvm-rg350-6731eb21e3e4c1fa2470ed03a3547d45b3dff6e3.tar.gz
scummvm-rg350-6731eb21e3e4c1fa2470ed03a3547d45b3dff6e3.tar.bz2
scummvm-rg350-6731eb21e3e4c1fa2470ed03a3547d45b3dff6e3.zip
MT32: Avoid runtime abort due to non-POD object pass in MT32 Emulator.
Diffstat (limited to 'audio/softsynth')
-rw-r--r--audio/softsynth/mt32/Synth.cpp14
-rw-r--r--audio/softsynth/mt32/Synth.h4
2 files changed, 2 insertions, 16 deletions
diff --git a/audio/softsynth/mt32/Synth.cpp b/audio/softsynth/mt32/Synth.cpp
index c6ecf47cad..50b3fe610c 100644
--- a/audio/softsynth/mt32/Synth.cpp
+++ b/audio/softsynth/mt32/Synth.cpp
@@ -15,11 +15,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-//#include <cerrno>
-//#include <cmath>
-//#include <cstdlib>
-//#include <cstring>
-
#include "mt32emu.h"
#include "mmath.h"
#include "PartialManager.h"
@@ -99,11 +94,6 @@ void ReportHandler::showLCDMessage(const char *data) {
debug("\n");
}
-void ReportHandler::printDebug(const char *fmt, va_list list) {
- debug(fmt, list);
- debug("\n");
-}
-
void Synth::polyStateChanged(int partNum) {
reportHandler->onPolyStateChanged(partNum);
}
@@ -116,9 +106,9 @@ void Synth::printDebug(const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
#if MT32EMU_DEBUG_SAMPLESTAMPS > 0
- reportHandler->printDebug("[%u] ", renderedSampleCount);
+ debug("[%u] ", renderedSampleCount);
#endif
- reportHandler->printDebug(fmt, ap);
+ debug(fmt, ap);
va_end(ap);
}
diff --git a/audio/softsynth/mt32/Synth.h b/audio/softsynth/mt32/Synth.h
index 37fb7b280a..2ad0028e1f 100644
--- a/audio/softsynth/mt32/Synth.h
+++ b/audio/softsynth/mt32/Synth.h
@@ -236,10 +236,6 @@ public:
virtual ~ReportHandler() {}
protected:
-
- // Callback for debug messages, in vprintf() format
- virtual void printDebug(const char *fmt, va_list list);
-
// Callbacks for reporting various errors and information
virtual void onErrorControlROM() {}
virtual void onErrorPCMROM() {}