N64: Fix minAnalogX and minAnalogY values
D and L boolean inputs for the analog stick were one unit short of full range
This commit is contained in:
parent
171022529d
commit
ffe051ab26
|
@ -73,9 +73,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
}
|
||||
|
||||
private const sbyte _maxAnalogX = 127;
|
||||
private const sbyte _minAnalogX = -127;
|
||||
private const sbyte _minAnalogX = -128;
|
||||
private const sbyte _maxAnalogY = 127;
|
||||
private const sbyte _minAnalogY = -127;
|
||||
private const sbyte _minAnalogY = -128;
|
||||
|
||||
/// <summary>
|
||||
/// Translates controller input from EmuHawk into
|
||||
|
|
Loading…
Reference in New Issue