mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 06:40:18 +00:00
griffin fix
This commit is contained in:
parent
6652a6fcf7
commit
810ff5605d
@ -62,8 +62,8 @@ enum osk_type
|
|||||||
static enum osk_type osk_idx = OSK_LOWERCASE_LATIN;
|
static enum osk_type osk_idx = OSK_LOWERCASE_LATIN;
|
||||||
static int osk_ptr;
|
static int osk_ptr;
|
||||||
static const char *osk_grid[45];
|
static const char *osk_grid[45];
|
||||||
static unsigned osk_last_codepoint = 0;
|
static unsigned me_osk_last_codepoint = 0;
|
||||||
static unsigned osk_last_codepoint_len = 0;
|
static unsigned me_osk_last_codepoint_len = 0;
|
||||||
|
|
||||||
static const char *uppercase_grid[] = {
|
static const char *uppercase_grid[] = {
|
||||||
"!","@","#","$","%","^","&","*","(",")","⇦",
|
"!","@","#","$","%","^","&","*","(",")","⇦",
|
||||||
@ -336,8 +336,8 @@ unsigned menu_event(uint64_t input, uint64_t trigger_input)
|
|||||||
{
|
{
|
||||||
const char *letter = osk_grid[osk_ptr];
|
const char *letter = osk_grid[osk_ptr];
|
||||||
|
|
||||||
osk_last_codepoint_len = strlen(osk_grid[osk_ptr]);
|
me_osk_last_codepoint_len = strlen(osk_grid[osk_ptr]);
|
||||||
osk_last_codepoint = utf8_walk(&letter);
|
me_osk_last_codepoint = utf8_walk(&letter);
|
||||||
|
|
||||||
menu_event_osk_append(osk_ptr);
|
menu_event_osk_append(osk_ptr);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user