From 9dd2070243cba9d51936824df18b43d092307138 Mon Sep 17 00:00:00 2001 From: Lothar Serra Mari Date: Sun, 4 Jul 2021 16:27:36 +0200 Subject: [PATCH] AUDIO: MT32: Bump MT32 emulation code to libmt32emu 2.5.1 --- NEWS.md | 2 +- audio/softsynth/mt32/ROMInfo.cpp | 2 +- audio/softsynth/mt32/config.h | 4 ++-- doc/de/NEUES.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index a5ec01c5212..ca12945ceb6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -29,7 +29,7 @@ For a more comprehensive changelog of the latest experimental code, see: General: - Switched ScummVM GUI output to UTF-32. - - Updated the Roland MT-32 emulation code to the Munt project's mt32emu 2.5.0. + - Updated the Roland MT-32 emulation code to the Munt project's mt32emu 2.5.1. - Updated Dropbox Cloud Storage to use the new Dropbox OAuth workflow. - Major extension to the number of supported graphics scalers. - Display path to scummvm configuration file in GUI -> Options -> Paths. diff --git a/audio/softsynth/mt32/ROMInfo.cpp b/audio/softsynth/mt32/ROMInfo.cpp index b960427c8d5..ab22883cbe1 100644 --- a/audio/softsynth/mt32/ROMInfo.cpp +++ b/audio/softsynth/mt32/ROMInfo.cpp @@ -247,7 +247,7 @@ ROMImage::~ROMImage() { if (ownFile) { const Bit8u *data = file->getData(); delete file; - delete data; + delete[] data; } } diff --git a/audio/softsynth/mt32/config.h b/audio/softsynth/mt32/config.h index bc3a168837a..bf5ea8ca266 100644 --- a/audio/softsynth/mt32/config.h +++ b/audio/softsynth/mt32/config.h @@ -18,10 +18,10 @@ #ifndef MT32EMU_CONFIG_H #define MT32EMU_CONFIG_H -#define MT32EMU_VERSION "2.5.0" +#define MT32EMU_VERSION "2.5.1" #define MT32EMU_VERSION_MAJOR 2 #define MT32EMU_VERSION_MINOR 5 -#define MT32EMU_VERSION_PATCH 0 +#define MT32EMU_VERSION_PATCH 1 /* Library Exports Configuration * diff --git a/doc/de/NEUES.md b/doc/de/NEUES.md index 90a7fff83b4..b45ff90b8fa 100644 --- a/doc/de/NEUES.md +++ b/doc/de/NEUES.md @@ -30,7 +30,7 @@ Programmcodes finden Sie auf Englisch unter: Allgemein: - Die ScummVM-Benutzeroberfläche unterstützt nun UTF-32. - - Code der Roland MT-32-Emulation auf mt32emu 2.5.0 des Munt-Projekts aktualisiert. + - Code der Roland MT-32-Emulation auf mt32emu 2.5.1 des Munt-Projekts aktualisiert. - Unterstützung für die neue OAuth-Implementierung von Dropbox hinzugefügt. - Umfangreiche Verbesserungen an den unterstützten Grafik-Scalern vorgenommen. - Der Pfad zur ScummVM-Konfigurationsdatei wird nun in der GUI unter Optionen -> Pfade angezeigt.