mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 07:45:33 +01:00
Merge pull request #11489 from lioncash/init
CoreTiming: Zero initialize all CoreTimingManager throttle members
This commit is contained in:
commit
9fc959cab0
@ -183,8 +183,8 @@ private:
|
|||||||
|
|
||||||
s64 m_throttle_last_cycle = 0;
|
s64 m_throttle_last_cycle = 0;
|
||||||
TimePoint m_throttle_deadline = Clock::now();
|
TimePoint m_throttle_deadline = Clock::now();
|
||||||
s64 m_throttle_clock_per_sec;
|
s64 m_throttle_clock_per_sec = 0;
|
||||||
s64 m_throttle_min_clock_per_sleep;
|
s64 m_throttle_min_clock_per_sleep = 0;
|
||||||
bool m_throttle_disable_vi_int = false;
|
bool m_throttle_disable_vi_int = false;
|
||||||
|
|
||||||
void ResetThrottle(s64 cycle);
|
void ResetThrottle(s64 cycle);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user