mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
(menu_event.c) Cleanups
This commit is contained in:
parent
82af0a853c
commit
3d5a744f8e
@ -99,7 +99,7 @@ static const char *katakana_page2_grid[] = {
|
|||||||
"マ","ミ","ム","メ","モ","ン","ッ","ャ","ュ","ョ","⇧",
|
"マ","ミ","ム","メ","モ","ン","ッ","ャ","ュ","ョ","⇧",
|
||||||
"ヤ","ユ","ヨ","ワ","ヲ","ァ","ィ","ゥ","ェ","ォ","⊕"};
|
"ヤ","ユ","ヨ","ワ","ヲ","ァ","ィ","ゥ","ェ","ォ","⊕"};
|
||||||
|
|
||||||
int menu_event_get_osk_ptr()
|
int menu_event_get_osk_ptr(void)
|
||||||
{
|
{
|
||||||
return osk_ptr;
|
return osk_ptr;
|
||||||
}
|
}
|
||||||
@ -131,7 +131,7 @@ void menu_event_osk_append(int ptr)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const char** menu_event_get_osk_grid()
|
const char** menu_event_get_osk_grid(void)
|
||||||
{
|
{
|
||||||
return osk_grid;
|
return osk_grid;
|
||||||
}
|
}
|
||||||
|
@ -39,10 +39,13 @@ void menu_event_keyboard_set(bool down, enum retro_key key);
|
|||||||
|
|
||||||
unsigned char menu_event_keyboard_is_set(enum retro_key key);
|
unsigned char menu_event_keyboard_is_set(enum retro_key key);
|
||||||
|
|
||||||
int menu_event_get_osk_ptr();
|
int menu_event_get_osk_ptr(void);
|
||||||
void menu_event_set_osk_ptr(int);
|
|
||||||
void menu_event_osk_append(int);
|
void menu_event_set_osk_ptr(int a);
|
||||||
const char** menu_event_get_osk_grid();
|
|
||||||
|
void menu_event_osk_append(int a);
|
||||||
|
|
||||||
|
const char** menu_event_get_osk_grid(void);
|
||||||
|
|
||||||
RETRO_END_DECLS
|
RETRO_END_DECLS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user