Remove unused function

This commit is contained in:
twinaphex 2018-02-25 00:28:31 +01:00
parent 865fec4282
commit 2a6af87d23
2 changed files with 0 additions and 16 deletions

View File

@ -213,20 +213,6 @@ int menu_entries_get_core_name(char *s, size_t len)
return 0;
}
bool menu_entries_current_core_is_no_core(void)
{
char corename[255];
const char *no_core_str = NULL;
corename[0] = '\0';
menu_entries_get_core_name(corename, sizeof(corename));
no_core_str = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_CORE);
return string_is_equal(corename, no_core_str);
}
/* Sets 's' to the name of the current core
* (shown at the top of the UI). */
int menu_entries_get_core_title(char *s, size_t len)

View File

@ -115,8 +115,6 @@ typedef struct menu_file_list_cbs
int menu_entries_get_title(char *title, size_t title_len);
bool menu_entries_current_core_is_no_core(void);
int menu_entries_get_core_title(char *title_msg, size_t title_msg_len);
int menu_entries_get_core_name(char *s, size_t len);