Unhide "Cache ISO in RAM" on ARM platform. Not the right block level. We should probably check for available RAM instead.

This commit is contained in:
Henrik Rydgård 2022-02-15 13:18:56 +01:00
parent 858539c5b0
commit 1f71a69be2

View file

@ -1000,9 +1000,7 @@ void GameSettingsScreen::CreateViews() {
if (System_GetPropertyBool(SYSPROP_HAS_KEYBOARD))
systemSettings->Add(new CheckBox(&g_Config.bBypassOSKWithKeyboard, sy->T("Use system native keyboard")));
#if PPSSPP_ARCH(AMD64)
systemSettings->Add(new CheckBox(&g_Config.bCacheFullIsoInRam, sy->T("Cache ISO in RAM", "Cache full ISO in RAM")))->SetEnabled(!PSP_IsInited());
#endif
systemSettings->Add(new ItemHeader(sy->T("Cheats", "Cheats")));
CheckBox *enableCheats = systemSettings->Add(new CheckBox(&g_Config.bEnableCheats, sy->T("Enable Cheats")));