gonna flip it on them

This commit is contained in:
nattthebear 2017-06-18 09:02:54 -04:00
parent 1292b27163
commit 69d0b36ca1
2 changed files with 507 additions and 507 deletions

File diff suppressed because it is too large Load Diff

View File

@ -165,8 +165,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn
for (int i = 0; i < _bakedAnalogNames.Length; i++)
{
var data = (int)controller.GetFloat(_bakedAnalogNames[i]);
var datal = (short)Math.Max(data, 0);
var datar = (short)Math.Max(-data, 0);
var datal = (short)Math.Max(-data, 0);
var datar = (short)Math.Max(data, 0);
dest[pos++] = (byte)datal;
dest[pos++] = (byte)(datal >> 8);
dest[pos++] = (byte)datar;