From e215f99f74e6020c5ae270ad4ac2d873f11367a0 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 4 Jul 2020 18:44:34 -0400 Subject: [PATCH] GBHawk: increase MBC7 asselerometer return value range --- .../Consoles/Nintendo/GBHawk/GBHawkControllers.cs | 4 ++-- 1 file changed, 2 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 7d8aaee537..6b0cafbbb1 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)(0x81D0 - Math.Floor(temp * 125) - temp2); + return (ushort)(0x8370 - Math.Floor(temp * 220) - 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)(0x81D0 - Math.Floor(temp * 125) + temp2); + return (ushort)(0x8370 - Math.Floor(temp * 220) + temp2); } private static readonly string[] BaseDefinition =