diff options
author | Colin Snover | 2016-12-18 10:23:30 -0600 |
---|---|---|
committer | Colin Snover | 2016-12-18 10:25:58 -0600 |
commit | b93f4f06e408bea84c88e7e99f4d9414bb263452 (patch) | |
tree | 2978d7001b86de331611515bc183355935592bcd | |
parent | 5af2fe0ec3240941288b4cc59fa823283d1c8e86 (diff) | |
download | scummvm-rg350-b93f4f06e408bea84c88e7e99f4d9414bb263452.tar.gz scummvm-rg350-b93f4f06e408bea84c88e7e99f4d9414bb263452.tar.bz2 scummvm-rg350-b93f4f06e408bea84c88e7e99f4d9414bb263452.zip |
MT32: Really add the virtual destructor
-rw-r--r-- | audio/softsynth/mt32.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index d417d35cad..38978b8edf 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -91,6 +91,8 @@ public: virtual void onNewReverbLevel(Bit8u /* level */) {} virtual void onPolyStateChanged(Bit8u /* part_num */) {} virtual void onProgramChanged(Bit8u /* part_num */, const char * /* sound_group_name */, const char * /* patch_name */) {} + + virtual ~ScummVMReportHandler() {} }; } // end of namespace MT32Emu |