From 4d7a4ec29d3bf6de401720ebeaa429d41727610c Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 27 Apr 2021 00:19:26 -0700 Subject: [PATCH] MIDI: No longer call BASS_Free on shutdown, may have been possible to cause a hang on shutdown --- Plugins/MIDI/MIDI/BMPlayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/MIDI/MIDI/BMPlayer.cpp b/Plugins/MIDI/MIDI/BMPlayer.cpp index 141cf0e93..e44bf067f 100644 --- a/Plugins/MIDI/MIDI/BMPlayer.cpp +++ b/Plugins/MIDI/MIDI/BMPlayer.cpp @@ -242,7 +242,7 @@ public: if ( initialized ) { cache_deinit(); - BASS_Free(); + // BASS_Free(); // this is only called on shutdown anyway } }