Fix 3DS tilting

resolves #3931
This commit is contained in:
CasualPokePlayer 2024-06-06 21:41:56 -07:00
parent be4f6c4148
commit 1a318941ff
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.N3DS
public class _3DSMotionEmu
{
// update per frame
private const float UPDATE_PERIOD = (float)(4481136.0 / 268111856.0);
private const float UPDATE_PERIOD = (float)(268111856.0 / 4481136.0);
// todo: make these adjustable
private const float SENSITIVITY = 0.01f;