diff --git a/Core/Dialog/PSPOskDialog.cpp b/Core/Dialog/PSPOskDialog.cpp index c953052bc6..e5a9888e0a 100755 --- a/Core/Dialog/PSPOskDialog.cpp +++ b/Core/Dialog/PSPOskDialog.cpp @@ -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);