mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
Add comments back in. I promised Unknown I'd add them back in.
This commit is contained in:
parent
2f9a909697
commit
1c9c2576eb
@ -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…
Reference in New Issue
Block a user