From 5de2adcead50ecd76cb1f991ecb53b59c1a04e2e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 25 Jun 2013 16:59:40 -0400 Subject: [PATCH] Fixed missing Japanese characters in the OSK. Also added the vowel lengthening character to Katakana and Hirigana --- Core/Dialog/PSPOskDialog.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Core/Dialog/PSPOskDialog.cpp b/Core/Dialog/PSPOskDialog.cpp index d4fff6045b..0551464512 100755 --- a/Core/Dialog/PSPOskDialog.cpp +++ b/Core/Dialog/PSPOskDialog.cpp @@ -80,17 +80,17 @@ static const wchar_t oskKeys[OSK_KEYBOARD_COUNT][5][14] = // Hiragana {L"あかさたなはまやらわぁゃっ"}, {L"いきしちにひみ り ぃ  "}, - {L"うくすつぬふむゆるをぅゅ˝"}, - {L"えけせてねへめ れ ぇ ˚"}, - {L"おこそとのほもよるんぉょ "}, + {L"うくすつぬふむゆるをぅゅ゛"}, + {L"えけせてねへめ れ ぇ ゜"}, + {L"おこそとのほもよるんぉょー"}, }, { // Katakana {L"アカサタナハマヤラワァャッ"}, {L"イキシチニヒミ リ ィ  "}, - {L"ウクスツヌフムユルヲゥュ˝"}, - {L"エケセテネヘメ レ ェ ˚"}, - {L"オコソトノホモヨルンォョ "}, + {L"ウクスツヌフムユルヲゥュ゛"}, + {L"エケセテネヘメ レ ェ ゜"}, + {L"オコソトノホモヨルンォョー"}, }, { // Korean(Hangul) @@ -497,7 +497,7 @@ std::wstring PSPOskDialog::CombinationString(bool isInput) i_level = 0; } - if(oskKeys[currentKeyboard][selectedRow][selectedCol] == L'˝') + if(oskKeys[currentKeyboard][selectedRow][selectedCol] == L'゛') { for(u32 i = 0; i < inputChars.size(); i++) { @@ -524,7 +524,7 @@ std::wstring PSPOskDialog::CombinationString(bool isInput) } } } - else if(oskKeys[currentKeyboard][selectedRow][selectedCol] == L'˚') + else if(oskKeys[currentKeyboard][selectedRow][selectedCol] == L'゜') { for(u32 i = 0; i < inputChars.size(); i++) {