mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Merge pull request #7625 from jordan-woyak/emu-shake-fix
WiimoteEmu: Shaking emulation fix
This commit is contained in:
@ -356,8 +356,7 @@ void BluetoothEmu::Update()
|
||||
}
|
||||
}
|
||||
|
||||
// The Real Wii Remote sends report every ~5ms (200 Hz).
|
||||
const u64 interval = SystemTimers::GetTicksPerSecond() / 200;
|
||||
const u64 interval = SystemTimers::GetTicksPerSecond() / Wiimote::UPDATE_FREQ;
|
||||
const u64 now = CoreTiming::GetTicks();
|
||||
|
||||
if (now - m_last_ticks > interval)
|
||||
|
Reference in New Issue
Block a user