mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +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;
|
||||
}
|
||||
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
int menu_event_get_osk_ptr();
|
||||
void menu_event_set_osk_ptr(int);
|
||||
void menu_event_osk_append(int);
|
||||
const char** menu_event_get_osk_grid();
|
||||
int menu_event_get_osk_ptr(void);
|
||||
|
||||
void menu_event_set_osk_ptr(int a);
|
||||
|
||||
void menu_event_osk_append(int a);
|
||||
|
||||
const char** menu_event_get_osk_grid(void);
|
||||
|
||||
RETRO_END_DECLS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user