Typo fixed

This commit is contained in:
Lubos 2022-11-17 19:13:04 +01:00
parent c9d1da28fc
commit 4a770b36cf
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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) {