From 1c9c2576eb3f81b48ba1b885a0e8f86f9ee1eb57 Mon Sep 17 00:00:00 2001 From: The Dax Date: Sat, 28 Sep 2013 18:18:49 -0400 Subject: [PATCH] Add comments back in. I promised Unknown I'd add them back in. --- Core/Dialog/PSPOskDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) 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);