diff --git a/menu/menu_hash.c b/menu/menu_hash.c index 10e9184d25..f71e3fdb80 100644 --- a/menu/menu_hash.c +++ b/menu/menu_hash.c @@ -22,6 +22,17 @@ #include "../configuration.h" +static const char *menu_hash_to_str_french(uint32_t hash) +{ + switch (hash) + { + default: + break; + } + + return "null"; +} + static const char *menu_hash_to_str_dutch(uint32_t hash) { switch (hash) @@ -300,6 +311,8 @@ const char *menu_hash_to_str(uint32_t hash) switch (settings->user_language) { + case RETRO_LANGUAGE_FRENCH: + ret = menu_hash_to_str_french(hash); case RETRO_LANGUAGE_DUTCH: ret = menu_hash_to_str_dutch(hash); default: