From 0d72af0f55e6644a391141bb25a49975809fede2 Mon Sep 17 00:00:00 2001 From: Alexander Babikov <2708460+lemondrops@users.noreply.github.com> Date: Thu, 28 Jul 2022 23:45:13 +0500 Subject: [PATCH] Clear the MT-32 LCD message on reset --- src/sound/midi_mt32.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sound/midi_mt32.c b/src/sound/midi_mt32.c index bb86210f3..ad2aaefa7 100644 --- a/src/sound/midi_mt32.c +++ b/src/sound/midi_mt32.c @@ -320,6 +320,8 @@ mt32_close(void *p) } context = NULL; + ui_sb_mt32lcd(""); + if (buffer) free(buffer); buffer = NULL;