mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Reporting: Don't report with locked CPU speed.
This commit is contained in:
parent
a0e4b6ad0b
commit
786a3ae17c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user