From 694b3d88d3805e9cf7f2a371a17402a7eaa26f9a Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 5 Jul 2020 18:39:06 -0400 Subject: [PATCH] GBhawk: fine tune tilt range some more and fix savestate --- .../Consoles/Nintendo/GBHawk/GBHawkControllers.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs index 6b0cafbbb1..436aab7c0e 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawkControllers.cs @@ -181,7 +181,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk // since rotations about X have less of a moment arm compared to by, we take 1/5 of the effect as a baseline float temp2 = (float)((phi - phi_prev) / 0.5 * 25); - return (ushort)(0x8370 - Math.Floor(temp * 220) - temp2); + return (ushort)(0x8370 - Math.Floor(temp * 216) - temp2); } // acc y is just the sine of the angle @@ -195,7 +195,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk // further it will be assumed that the resulting acceleration is roughly eqvuivalent to gravity float temp2 = (float)((theta - theta_prev)/0.5 * 125); - return (ushort)(0x8370 - Math.Floor(temp * 220) + temp2); + return (ushort)(0x8370 - Math.Floor(temp * 216) + temp2); } private static readonly string[] BaseDefinition = @@ -207,6 +207,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { // since we need rate of change of angle, need to savestate them ser.Sync(nameof(theta), ref theta); + ser.Sync(nameof(phi), ref phi); } } } \ No newline at end of file