diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs index 0dc562840a..ffcd6f10ee 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs @@ -305,7 +305,7 @@ public ControllerAdapter( // so these thunks are called after the frame has advanced _rumblers.Add((c, b) => { - const double SCALE_FACTOR = (double) int.MaxValue / (double) byte.MaxValue; + const double SCALE_FACTOR = (double)int.MaxValue / byte.MaxValue; static int Scale(byte b) => (b * SCALE_FACTOR).RoundToInt(); //TODO double-check order