From 97e4d42b7b5878bf5348c54e0180a66d847f2932 Mon Sep 17 00:00:00 2001 From: SuuperW Date: Sat, 16 Jan 2021 10:05:12 -0600 Subject: [PATCH] TAStudio macros: fix regression from commit 5bbdf2a caused by bad order of operations (remove ?? operator entirely since we have already checked that the values exist) --- .../tools/TAStudio/TAStudio.MenuItems.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 7cfb0a6848..35b200bcc7 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -242,8 +242,8 @@ namespace BizHawk.Client.EmuHawk Emulator, Tools, MovieSession, - TasView.FirstSelectedIndex ?? 0, - TasView.LastSelectedIndex ?? 0 - TasView.FirstSelectedIndex ?? 0 + 1) + TasView.FirstSelectedIndex.Value, + TasView.LastSelectedIndex.Value - TasView.FirstSelectedIndex.Value + 1) .Save(file.FullName); Config.RecentMacros.Add(file.FullName);