fix autofire sticky axes off value

This commit is contained in:
Morilli 2024-09-23 02:12:33 +02:00
parent 5803e362f9
commit 3ea0a5a2dd
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ namespace BizHawk.Client.Common
{
if (value.HasValue)
{
pattern ??= new AutoPatternAxis(value.Value, _onFrames, 0, _offFrames);
pattern ??= new AutoPatternAxis(value.Value, _onFrames, Definition.Axes[name].Neutral, _offFrames);
_axisPatterns[name] = pattern;
}
else