From 0fe8fadc39e2acf756227459da23b1f2a68d6872 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:40:30 +0200 Subject: [PATCH] on shutdown, close tools before stopping movie - closes #4065 --- src/BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 979274f6e9..082c78308f 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -809,8 +809,8 @@ namespace BizHawk.Client.EmuHawk return; } - MovieSession.StopMovie(); Tools.Close(); + MovieSession.StopMovie(); // zero 03-nov-2015 - close game after other steps. tools might need to unhook themselves from a core. CloseGame(); SaveConfig();