Add comments back in. I promised Unknown I'd add them back in.

This commit is contained in:
The Dax 2013-09-28 18:18:49 -04:00
parent 2f9a909697
commit 1c9c2576eb

View File

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