Saturn Virtual pads - fix L/R 3d controller values

This commit is contained in:
adelikat 2020-07-18 13:36:31 -05:00
parent 59661fea86
commit 74a57c320e
1 changed files with 4 additions and 4 deletions

View File

@ -110,15 +110,15 @@ namespace BizHawk.Client.EmuHawk
{
DisplayName = "L",
TargetSize = new Size(128, 55),
MinValue = 0,
MaxValue = 255
MinValue = AxisRange.Min,
MaxValue = AxisRange.Max
},
new SingleAxisSchema(328, 12, controller, "R")
{
DisplayName = "R",
TargetSize = new Size(128, 55),
MinValue = 0,
MaxValue = 255
MinValue = AxisRange.Min,
MaxValue = AxisRange.Max
}
}
};