From 509560fa1a92cd7c8d73c4cd1b6751e56ec1c953 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 1 Sep 2020 08:23:00 +1000 Subject: [PATCH] Use RangeTo extension --- .../Consoles/Sony/PS2/DobieStation.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs index 83203a94a8..efbf3f33e5 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs @@ -159,10 +159,10 @@ namespace BizHawk.Emulation.Cores.Sony.PS2 }, Axes = { - { "RIGHT X", new AxisSpec(RangeExtensions.MutableRangeTo(0, 255), 128) }, - { "RIGHT Y", new AxisSpec(RangeExtensions.MutableRangeTo(0, 255), 128) }, - { "LEFT X", new AxisSpec(RangeExtensions.MutableRangeTo(0, 255), 128) }, - { "LEFT Y", new AxisSpec(RangeExtensions.MutableRangeTo(0, 255), 128) }, + { "RIGHT X", new AxisSpec(0.RangeTo(255), 128) }, + { "RIGHT Y", new AxisSpec(0.RangeTo(255), 128) }, + { "LEFT X", new AxisSpec(0.RangeTo(255), 128) }, + { "LEFT Y", new AxisSpec(0.RangeTo(255), 128) }, } };