mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-23 11:12:33 +00:00
Buildfix for enum functions
This commit is contained in:
parent
99d09f779f
commit
dcbba1a261
@ -18,7 +18,7 @@
|
||||
|
||||
#include "../menu_hash.h"
|
||||
|
||||
const char *menu_hash_to_str_de_eo_msg(enum menu_hash_enums msg)
|
||||
const char *menu_hash_to_str_eo_enum(enum menu_hash_enums msg)
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
|
@ -31,7 +31,7 @@
|
||||
/* DO NOT REMOVE THIS. If it causes build failure, it's because you saved the file as UTF-8. Read the above comment. */
|
||||
extern const char force_iso_8859_1[sizeof("¿áéíÍñóºú")==9+1 ? 1 : -1];
|
||||
|
||||
const char *menu_hash_to_str_es_label_enum(enum menu_hash_enums msg)
|
||||
const char *menu_hash_to_str_es_enum(enum menu_hash_enums msg)
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
|
@ -77,7 +77,6 @@ const char *menu_hash_to_str_enum(enum menu_hash_enums msg)
|
||||
if (!settings)
|
||||
return "null";
|
||||
|
||||
#if 0
|
||||
#ifdef HAVE_LANGEXTRA
|
||||
switch (settings->user_language)
|
||||
{
|
||||
@ -108,7 +107,6 @@ const char *menu_hash_to_str_enum(enum menu_hash_enums msg)
|
||||
default:
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
if (ret && !string_is_equal(ret, "null"))
|
||||
|
@ -2368,7 +2368,7 @@ const char *menu_hash_to_str_de_enum(enum menu_hash_enums msg);
|
||||
int menu_hash_get_help_de(uint32_t hash, char *s, size_t len);
|
||||
|
||||
const char *menu_hash_to_str_es(uint32_t hash);
|
||||
const char *menu_hash_to_str_es_label_enum(enum menu_hash_enums msg);
|
||||
const char *menu_hash_to_str_es_enum(enum menu_hash_enums msg);
|
||||
int menu_hash_get_help_es(uint32_t hash, char *s, size_t len);
|
||||
|
||||
const char *menu_hash_to_str_fr(uint32_t hash);
|
||||
@ -2392,7 +2392,7 @@ const char *menu_hash_to_str_pt_enum(enum menu_hash_enums msg);
|
||||
int menu_hash_get_help_pt(uint32_t hash, char *s, size_t len);
|
||||
|
||||
const char *menu_hash_to_str_eo(uint32_t hash);
|
||||
const char *menu_hash_to_str_de_eo_msg(enum menu_hash_enums msg);
|
||||
const char *menu_hash_to_str_eo_msg(enum menu_hash_enums msg);
|
||||
int menu_hash_get_help_eo(uint32_t hash, char *s, size_t len);
|
||||
|
||||
const char *menu_hash_to_str_us(uint32_t hash);
|
||||
|
Loading…
x
Reference in New Issue
Block a user