mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
(menu_hash.c) Add stubs for French/German/Spanish/Italian/Portuguese
This commit is contained in:
parent
b19ddd1685
commit
e29efda673
@ -22,6 +22,17 @@
|
|||||||
|
|
||||||
#include "../configuration.h"
|
#include "../configuration.h"
|
||||||
|
|
||||||
|
static const char *menu_hash_to_str_spanish(uint32_t hash)
|
||||||
|
{
|
||||||
|
switch (hash)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "null";
|
||||||
|
}
|
||||||
|
|
||||||
static const char *menu_hash_to_str_german(uint32_t hash)
|
static const char *menu_hash_to_str_german(uint32_t hash)
|
||||||
{
|
{
|
||||||
switch (hash)
|
switch (hash)
|
||||||
@ -33,6 +44,28 @@ static const char *menu_hash_to_str_german(uint32_t hash)
|
|||||||
return "null";
|
return "null";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char *menu_hash_to_str_portuguese(uint32_t hash)
|
||||||
|
{
|
||||||
|
switch (hash)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "null";
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char *menu_hash_to_str_italian(uint32_t hash)
|
||||||
|
{
|
||||||
|
switch (hash)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "null";
|
||||||
|
}
|
||||||
|
|
||||||
static const char *menu_hash_to_str_french(uint32_t hash)
|
static const char *menu_hash_to_str_french(uint32_t hash)
|
||||||
{
|
{
|
||||||
switch (hash)
|
switch (hash)
|
||||||
@ -1348,6 +1381,15 @@ const char *menu_hash_to_str(uint32_t hash)
|
|||||||
case RETRO_LANGUAGE_GERMAN:
|
case RETRO_LANGUAGE_GERMAN:
|
||||||
ret = menu_hash_to_str_german(hash);
|
ret = menu_hash_to_str_german(hash);
|
||||||
break;
|
break;
|
||||||
|
case RETRO_LANGUAGE_SPANISH:
|
||||||
|
ret = menu_hash_to_str_spanish(hash);
|
||||||
|
break;
|
||||||
|
case RETRO_LANGUAGE_ITALIAN:
|
||||||
|
ret = menu_hash_to_str_italian(hash);
|
||||||
|
break;
|
||||||
|
case RETRO_LANGUAGE_PORTUGUESE:
|
||||||
|
ret = menu_hash_to_str_portuguese(hash);
|
||||||
|
break;
|
||||||
case RETRO_LANGUAGE_DUTCH:
|
case RETRO_LANGUAGE_DUTCH:
|
||||||
ret = menu_hash_to_str_dutch(hash);
|
ret = menu_hash_to_str_dutch(hash);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user