Default to no reporting server, oops

This commit is contained in:
Henrik Rydgård 2024-10-29 13:20:11 +01:00
parent 4016539c85
commit 7bb0c58e8d

View File

@ -225,10 +225,10 @@ namespace Reporting
PurgeCRC();
}
// Returns the full host (e.g. report.ppsspp.org:80.)
// Returns the full host
std::string ServerHost() {
if (g_Config.sReportHost.compare("default") == 0)
return "report.ppsspp.org";
return "";
return g_Config.sReportHost;
}