1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-29 22:20:21 +00:00

Make menu_entry_get_setting static

This commit is contained in:
twinaphex 2015-06-01 16:54:48 +02:00
parent f2e7b32960
commit 34d4195015
2 changed files with 1 additions and 3 deletions

@ -127,7 +127,7 @@ void menu_entries_get_core_title(char *title_msg, size_t title_msg_len)
core_name, core_version);
}
rarch_setting_t *menu_entry_get_setting(uint32_t i)
static rarch_setting_t *menu_entry_get_setting(uint32_t i)
{
const char *path = NULL, *entry_label = NULL;
unsigned type = 0;

@ -59,8 +59,6 @@ int menu_entry_go_back(void);
void menu_entries_get_core_title(char *title_msg, size_t title_msg_len);
rarch_setting_t *menu_entry_get_setting(uint32_t i);
enum menu_entry_type menu_entry_get_type(uint32_t i);
void menu_entry_get_path(uint32_t i, char *s, size_t len);