Skip to content

Commit

Permalink
Reporting: Don't report with locked CPU speed.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Dec 1, 2017
1 parent a0e4b6a commit 786a3ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Core/Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,7 @@ namespace Reporting
return false;
if (CheatsInEffect())
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))
if (g_Config.iLockedCPUSpeed != 0)
return false;
// Don't allow builds without version info from git. They're useless for reporting.
if (strcmp(PPSSPP_GIT_VERSION, "unknown") == 0)
Expand Down

0 comments on commit 786a3ae

Please sign in to comment.