Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #78 from degasus/hideSlowdownWarnings
Remove slowdown warning
  • Loading branch information
delroth committed Feb 16, 2014
2 parents bc0584e + e5eff6b commit 1e94853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/SystemTimers.cpp
Expand Up @@ -246,7 +246,7 @@ void ThrottleCallback(u64 last_time, int cyclesLate)
const int max_fallback = 40; // 40 ms for one frame on 25 fps games
if (frame_limiter && abs(diff) > max_fallback)
{
WARN_LOG(COMMON, "system too %s, %d ms skipped", diff<0 ? "slow" : "fast", abs(diff) - max_fallback);
DEBUG_LOG(COMMON, "system too %s, %d ms skipped", diff<0 ? "slow" : "fast", abs(diff) - max_fallback);
last_time = time - max_fallback;
}
else if (frame_limiter && diff > 0)
Expand Down

0 comments on commit 1e94853

Please sign in to comment.