mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Disable achievements support in VR because the UI doesn't work
Fixes #19521
This commit is contained in:
parent
82d3b17bf9
commit
d8d992d695
1 changed files with 1 additions and 1 deletions
|
@ -1025,7 +1025,7 @@ void GameSettingsScreen::CreateToolsSettings(UI::ViewGroup *tools) {
|
|||
|
||||
tools->Add(new ItemHeader(ms->T("Tools")));
|
||||
|
||||
const bool showRetroAchievements = true; // System_GetPropertyInt(SYSPROP_DEVICE_TYPE) != DEVICE_TYPE_VR;
|
||||
const bool showRetroAchievements = System_GetPropertyInt(SYSPROP_DEVICE_TYPE) != DEVICE_TYPE_VR;
|
||||
if (showRetroAchievements) {
|
||||
auto retro = tools->Add(new Choice(sy->T("RetroAchievements")));
|
||||
retro->OnClick.Add([=](UI::EventParams &) -> UI::EventReturn {
|
||||
|
|
Loading…
Add table
Reference in a new issue