Fix call order in `SMSControllerDeck` (fixes #3282)

fixes 0719d6f9d
This commit is contained in:
YoshiRulz 2022-06-19 09:43:40 +10:00
parent 20acbe5798
commit 5afb6ca454
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 5 additions and 4 deletions

View File

@ -23,7 +23,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
BoolButtons = new[] { "Reset" }
.Concat(Port1.Definition.BoolButtons)
.ToList()
}.MakeImmutable();
};
}
else
{
@ -38,7 +38,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
.Concat(Port1.Definition.BoolButtons)
.Concat(Port2.Definition.BoolButtons)
.ToList()
}.MakeImmutable();
};
}
else
{
@ -49,12 +49,13 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem
.Concat(Port2.Definition.BoolButtons)
.Concat(KeyboardMap)
.ToList()
}.MakeImmutable();
};
}
foreach (var kvp in Port1.Definition.Axes) Definition.Axes.Add(kvp);
foreach (var kvp in Port2.Definition.Axes) Definition.Axes.Add(kvp);
}
}
Definition.MakeImmutable();
}
public byte ReadPort1_c1(IController c)