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

This commit is contained in:
adelikat 2020-05-24 16:26:35 -05:00
parent 44b5d12e39
commit e980932356
1 changed files with 2 additions and 2 deletions

View File

@ -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);