Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11489 from lioncash/init
CoreTiming: Zero initialize all CoreTimingManager throttle members
  • Loading branch information
AdmiralCurtiss committed Jan 25, 2023
2 parents 6fad8ac + 3607c1d commit 9fc959c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/CoreTiming.h
Expand Up @@ -183,8 +183,8 @@ class CoreTimingManager

s64 m_throttle_last_cycle = 0;
TimePoint m_throttle_deadline = Clock::now();
s64 m_throttle_clock_per_sec;
s64 m_throttle_min_clock_per_sleep;
s64 m_throttle_clock_per_sec = 0;
s64 m_throttle_min_clock_per_sleep = 0;
bool m_throttle_disable_vi_int = false;

void ResetThrottle(s64 cycle);
Expand Down

0 comments on commit 9fc959c

Please sign in to comment.