Remove option to hide the homebrew store

This commit is contained in:
Henrik Rydgard 2015-07-04 10:33:36 +02:00
parent 41c8599087
commit 0f8a969284
3 changed files with 1 additions and 3 deletions

View File

@ -286,7 +286,6 @@ static ConfigSetting generalSettings[] = {
ConfigSetting("IgnoreBadMemAccess", &g_Config.bIgnoreBadMemAccess, true, true),
ConfigSetting("CurrentDirectory", &g_Config.currentDirectory, ""),
ConfigSetting("ShowDebuggerOnLoad", &g_Config.bShowDebuggerOnLoad, false),
ConfigSetting("HomebrewStore", &g_Config.bHomebrewStore, true, false),
ConfigSetting("CheckForNewVersion", &g_Config.bCheckForNewVersion, true),
ConfigSetting("Language", &g_Config.sLanguageIni, &DefaultLangRegion),
ConfigSetting("ForceLagSync", &g_Config.bForceLagSync, false, true, true),

View File

@ -84,7 +84,6 @@ public:
bool bAutoRun; // start immediately
bool bBrowse; // when opening the emulator, immediately show a file browser
bool bHomebrewStore;
// General
int iNumWorkerThreads;

View File

@ -577,7 +577,7 @@ void GameBrowser::Refresh() {
OnClick.Handle(this, &GameBrowser::PinToggleClick);
}
if (g_Config.bHomebrewStore && (flags_ & FLAG_HOMEBREWSTOREBUTTON)) {
if (flags_ & FLAG_HOMEBREWSTOREBUTTON) {
Add(new Spacer());
homebrewStoreButton_ = Add(new Choice(mm->T("DownloadFromStore", "Download from the PPSSPP Homebrew Store"), new UI::LinearLayoutParams(UI::WRAP_CONTENT, UI::WRAP_CONTENT)));
} else {