(Menu) Add French section

This commit is contained in:
twinaphex 2015-06-19 08:12:52 +02:00
parent 4ac997c28d
commit a76e6c484d

View File

@ -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: