From a76e6c484d42357bd1eddb4338cccfa49de1555a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 19 Jun 2015 08:12:52 +0200 Subject: [PATCH] (Menu) Add French section --- menu/menu_hash.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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: