From 5906fd154ef25620e3ae62bb8499da4f8f1bafe1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 22 Aug 2022 01:21:22 +1000 Subject: [PATCH] Fix typo fixes a95c4f182 --- src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index 17206a9827..f93905e4fa 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -495,7 +495,7 @@ namespace BizHawk.Client.EmuHawk // Fixes auto-loading, but why is this code like this? The code above suggests we have a AxisPattern for every axis button? But we don't // This is a sign of a deeper problem, but this fixes some basic functionality at least - if (index < BoolPatterns.Length) + if (index < AxisPatterns.Length) { AutoPatternAxis p = AxisPatterns[index]; InputManager.AutofireStickyXorAdapter.SetAxis(button, value, p);