mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
overlays/osk: fix full width characters
This commit is contained in:
parent
a1f70bf96e
commit
c63f77e3b0
@ -66,6 +66,11 @@ namespace rsx
|
||||
{
|
||||
return language_class::hangul;
|
||||
}
|
||||
case 0xFF: // Halfwidth and Fullwidth Forms
|
||||
{
|
||||
// Found in SCE-PS3-SR-R-JPN.TTF, so we'll use cjk_base for now
|
||||
return language_class::cjk_base;
|
||||
}
|
||||
default:
|
||||
{
|
||||
if (codepage_id >= 0xAC && codepage_id <= 0xD7)
|
||||
|
@ -164,7 +164,7 @@ namespace rsx
|
||||
{{{U"", U""}, {U"", U""}, {U"", U""}, {U""}}, default_bg, 1},
|
||||
|
||||
// Special
|
||||
{{{U"あ/ア"}, {U"A/a"}, {U"全/半"}, {U""}}, special2_bg, 2, button_flags::_shift, shift_cb },
|
||||
{{{U"あ/ア"}, {U"A/a"}, {U"A/a"}, {U""}}, special2_bg, 2, button_flags::_shift, shift_cb },
|
||||
{{{U"abc"}, {U"全半"}, {U"@%"}, {U"あア"}}, special2_bg, 2, button_flags::_layer, layer_cb},
|
||||
{{{U"Space"}, {U"Space"}, {U"Space"}, {U"Space"}}, special_bg, 2, button_flags::_space, space_cb},
|
||||
{{{U"Backspace"}, {U"Backspace"}, {U"Backspace"}, {U"Backspace"}}, special_bg, 2, button_flags::_default, delete_cb },
|
||||
|
Loading…
Reference in New Issue
Block a user