From fb1ca6823c5d9ffd1959c5126c5611db5dab1a06 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Thu, 20 Feb 2014 01:02:22 -0800 Subject: [PATCH] Oops, fix reporting showing disabled outside game. --- Core/Reporting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Reporting.cpp b/Core/Reporting.cpp index 9b7d52b5d1..34aa865814 100644 --- a/Core/Reporting.cpp +++ b/Core/Reporting.cpp @@ -333,7 +333,7 @@ namespace Reporting bool IsEnabled() { - if (g_Config.sReportHost.empty() || !currentSupported) + if (g_Config.sReportHost.empty() || (!currentSupported && PSP_IsInited())) return false; // Disabled by default for now. if (g_Config.sReportHost.compare("default") == 0)