From b86966279250c7bacd70bec66a11ac78a5d0df9f Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 10 Mar 2015 03:34:24 +0000 Subject: [PATCH] never have analog controls that arent integerized --- BizHawk.Client.Common/ControllerBinding.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.Common/ControllerBinding.cs b/BizHawk.Client.Common/ControllerBinding.cs index 8ad3e5c3a3..1f2cf19978 100644 --- a/BizHawk.Client.Common/ControllerBinding.cs +++ b/BizHawk.Client.Common/ControllerBinding.cs @@ -97,6 +97,10 @@ namespace BizHawk.Client.Common //zero 09-mar-2015 - not sure if adding + 1 here is correct.. but... maybe? var output = (input * multiplier + 10000.0f) * (range.Max - range.Min + 1) / 20000.0f + range.Min; + //zero 09-mar-2015 - at this point, we should only have integers, since thats all 100% of consoles ever see + //if this becomes a problem we can add flags to the range and update GUIs to be able to display floats + output = (int)output; + float lbound = Math.Min(range.Min, range.Max); float ubound = Math.Max(range.Min, range.Max);