Skip to content

Commit

Permalink
Blacklist a few more settings in reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Feb 15, 2014
1 parent 592e8ca commit 49d6174
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Core/Reporting.cpp
Expand Up @@ -291,6 +291,11 @@ namespace Reporting
// Disabled when using certain hacks, because they make for poor reports.
if (g_Config.iRenderingMode >= FBO_READFBOMEMORY_MIN)
return false;
if (g_Config.bTimerHack)
return false;
// Not sure if we should support locked cpu at all, but definitely not far out values.
if (g_Config.iLockedCPUSpeed != 0 && (g_Config.iLockedCPUSpeed < 111 || g_Config.iLockedCPUSpeed > 333))
return false;

// Some users run the exe from a zip or something, and don't have fonts.
// This breaks things, but let's not report it since it's confusing.
Expand Down

0 comments on commit 49d6174

Please sign in to comment.