From cfc76ee47a72a38bb9b09f1c49566a4e9de5df76 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Sat, 22 Jun 2024 23:03:54 +0200 Subject: [PATCH] Fix subframe core check in tastudio bk2 exporting --- .../tools/TAStudio/TAStudio.MenuItems.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 0fbc3b612d..553feb725c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -246,9 +246,7 @@ namespace BizHawk.Client.EmuHawk { _autosaveTimer.Stop(); - if (Emulator is Emulation.Cores.Nintendo.SubNESHawk.SubNESHawk - || Emulator is Emulation.Cores.Nintendo.Gameboy.Gameboy - || Emulator is Emulation.Cores.Nintendo.SubGBHawk.SubGBHawk) + if (Emulator.HasCycleTiming()) { DialogController.ShowMessageBox("This core requires emulation to be on the last frame when writing the movie, otherwise movie length will appear incorrect.\nTAStudio can't handle this, so Export BK2, play it to the end, and then Save Movie.", "Warning", EMsgBoxIcon.Warning); }