diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 083ba75def..5bccfde705 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -62,6 +62,8 @@ namespace BizHawk.Client.EmuHawk private int? _seekStartFrame; private bool _unpauseAfterSeeking; + private readonly Dictionary _alternateRowColor = new(); + private ControllerDefinition ControllerType => MovieSession.MovieController.Definition; public bool WasRecording { get; set; } @@ -247,8 +249,13 @@ namespace BizHawk.Client.EmuHawk color = Palette.AnalogEdit_Col; } - int player = Emulator.ControllerDefinition.PlayerNumber(columnName); - if (player != 0 && player % 2 == 0) + if (!_alternateRowColor.ContainsKey(columnName)) + { + int playerNumber = ControllerDefinition.PlayerNumber(columnName); + _alternateRowColor[columnName] = playerNumber != 0 && playerNumber % 2 == 0; + } + + if (_alternateRowColor[columnName]) { color = Color.FromArgb(0x0D, 0x00, 0x00, 0x00); } diff --git a/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs b/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs index c9c5e54206..ad86188165 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/ControllerDefinition.cs @@ -121,7 +121,7 @@ namespace BizHawk.Emulation.Common return this; } - public int PlayerNumber(string buttonName) + public static int PlayerNumber(string buttonName) { var match = PlayerRegex.Match(buttonName); return match.Success