diff --git a/Core/Config.cpp b/Core/Config.cpp index e47c9de818..73ca67cc90 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -73,7 +73,7 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) iMaxRecent = 12; // "default" means let emulator decide, "" means disable. - general->Get("ReportHost", &sReportHost, "default"); + general->Get("ReportingHost", &sReportHost, "default"); general->Get("Recent", recentIsos); general->Get("AutoSaveSymbolMap", &bAutoSaveSymbolMap, false); #ifdef _WIN32 diff --git a/UI/GameSettingsScreen.cpp b/UI/GameSettingsScreen.cpp index e38389b133..c9f4a8a0aa 100644 --- a/UI/GameSettingsScreen.cpp +++ b/UI/GameSettingsScreen.cpp @@ -343,7 +343,7 @@ void GameSettingsScreen::CreateViews() { #endif systemSettings->Add(new PopupSliderChoice(&g_Config.iLockedCPUSpeed, 0, 1000, gs->T("Change CPU Clock", "Change CPU Clock (0 = default)"), screenManager())); - enableReports_ = g_Config.sReportHost != ""; + enableReports_ = g_Config.sReportHost != "default"; #ifndef ANDROID systemSettings->Add(new ItemHeader(s->T("Cheats", "Cheats (experimental, see forums)"))); @@ -450,7 +450,7 @@ UI::EventReturn GameSettingsScreen::OnBack(UI::EventParams &e) { Atrac3plus_Decoder::Init(); else Atrac3plus_Decoder::Shutdown(); } - g_Config.sReportHost = enableReports_ ? "report.ppsspp.org" : ""; + g_Config.sReportHost = enableReports_ ? "report.ppsspp.org" : "default"; g_Config.Save(); #ifdef _WIN32