From e9809323560465acdd3a6208d598fd94cdaa6e54 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 24 May 2020 16:26:35 -0500 Subject: [PATCH] Tastudio - don't show inaccurate core nag, if a movie is already loaded, since the movie has the inaccurate core in sync settings, this royal jacks things up --- src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index ae58e71d36..8ed43483e8 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -214,8 +214,8 @@ namespace BizHawk.Client.EmuHawk MainForm.PauseOnFrame = null; MainForm.PauseEmulator(); - // Nag if inaccurate core, but not if auto-loading - if (!CanAutoload ) + // Nag if inaccurate core, but not if auto-loading or movie is already loaded + if (!CanAutoload && MovieSession.Movie.NotActive()) { // Nag but allow the user to continue anyway, so ignore the return value EmuHawkUtil.EnsureCoreIsAccurate(Emulator);