diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 778abd4fb9..710cbf84b1 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -392,8 +392,14 @@ namespace BizHawk.Client.EmuHawk || c.Name.EndsWith("Block") || c.Name.EndsWith("Status")); - if (Emulator is N64) + if (Emulator.SystemId is VSystemID.Raw.N64) { + foreach (var c in TasView.AllColumns + .Where(static c => c.Name.EndsWith(" C Up") || c.Name.EndsWith(" C Down") + || c.Name.EndsWith(" C Left") || c.Name.EndsWith(" C Right"))) + { + c.Text = $"c{c.Text.ToUpperInvariant()}"; // prepend 'c' to differentiate from L/R buttons -- only affects table header + } var fakeAnalogControls = TasView.AllColumns .Where(c => c.Name.EndsWith("A Up")