mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Typo fixed
This commit is contained in:
parent
c9d1da28fc
commit
4a770b36cf
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue