mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add comments back in. I promised Unknown I'd add them back in.
This commit is contained in:
parent
2f9a909697
commit
1c9c2576eb
1 changed files with 2 additions and 0 deletions
|
@ -967,6 +967,7 @@ int PSPOskDialog::Update()
|
|||
}
|
||||
else if (IsButtonPressed(CTRL_RTRIGGER))
|
||||
{
|
||||
// TODO: Limit by allowed keyboards...
|
||||
// RTRIGGER now cycles languages forward.
|
||||
currentKeyboardLanguage = (OskKeyboardLanguage)((currentKeyboardLanguage + 1) % OSK_LANGUAGE_COUNT);
|
||||
currentKeyboard = OskKeyboardCases[currentKeyboardLanguage][LOWERCASE];
|
||||
|
@ -985,6 +986,7 @@ int PSPOskDialog::Update()
|
|||
}
|
||||
else if (IsButtonPressed(CTRL_LTRIGGER))
|
||||
{
|
||||
// TODO: Limit by allowed keyboards...
|
||||
// LTRIGGER now cycles languages backward.
|
||||
if (currentKeyboardLanguage - 1 >= 0)
|
||||
currentKeyboardLanguage = (OskKeyboardLanguage)((currentKeyboardLanguage - 1) % OSK_LANGUAGE_COUNT);
|
||||
|
|
Loading…
Add table
Reference in a new issue