mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Reduce emulated shaking frequency to 6hz. (something more humanly possible) (was ~13hz)
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