Skip to content

Commit

Permalink
Reporting: Require I/O on thread to be on.
Browse files Browse the repository at this point in the history
This will also cause a purple crash screen if it's off.
  • Loading branch information
unknownbrackets committed Oct 9, 2021
1 parent 1e1b6c2 commit 0184190
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,8 @@ namespace Reporting
return false;
if (g_Config.uJitDisableFlags != 0)
return false;
if (!g_Config.bSeparateIOThread)
return false;
// Don't allow builds without version info from git. They're useless for reporting.
if (strcmp(PPSSPP_GIT_VERSION, "unknown") == 0)
return false;
Expand Down

0 comments on commit 0184190

Please sign in to comment.