diff --git a/Common/VR/PPSSPPVR.h b/Common/VR/PPSSPPVR.h index c8c33420a3..5b31cc7a7f 100644 --- a/Common/VR/PPSSPPVR.h +++ b/Common/VR/PPSSPPVR.h @@ -18,7 +18,7 @@ enum VRCompatFlag { }; enum VRAppMode { - VR_CONTROLL_MAPPING_MODE, + VR_CONTROLLER_MAPPING_MODE, VR_DIALOG_MODE, VR_GAME_MODE, VR_MENU_MODE, diff --git a/UI/ControlMappingScreen.cpp b/UI/ControlMappingScreen.cpp index 1415cb53be..b0f0651735 100644 --- a/UI/ControlMappingScreen.cpp +++ b/UI/ControlMappingScreen.cpp @@ -330,7 +330,7 @@ void KeyMappingNewKeyDialog::CreatePopupContents(UI::ViewGroup *parent) { std::string pspButtonName = KeyMap::GetPspButtonName(this->pspBtn_); parent->Add(new TextView(std::string(km->T("Map a new key for")) + " " + mc->T(pspButtonName), new LinearLayoutParams(Margins(10,0)))); - SetVRAppMode(VRAppMode::VR_CONTROLL_MAPPING_MODE); + SetVRAppMode(VRAppMode::VR_CONTROLLER_MAPPING_MODE); } bool KeyMappingNewKeyDialog::key(const KeyInput &key) { @@ -363,7 +363,7 @@ void KeyMappingNewMouseKeyDialog::CreatePopupContents(UI::ViewGroup *parent) { auto km = GetI18NCategory("KeyMapping"); parent->Add(new TextView(std::string(km->T("You can press ESC to cancel.")), new LinearLayoutParams(Margins(10, 0)))); - SetVRAppMode(VRAppMode::VR_CONTROLL_MAPPING_MODE); + SetVRAppMode(VRAppMode::VR_CONTROLLER_MAPPING_MODE); } bool KeyMappingNewMouseKeyDialog::key(const KeyInput &key) {