mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(menu_hash.c) Add German stub
This commit is contained in:
parent
a44de1dae4
commit
da1b2d6df5
@ -22,6 +22,17 @@
|
||||
|
||||
#include "../configuration.h"
|
||||
|
||||
static const char *menu_hash_to_str_german(uint32_t hash)
|
||||
{
|
||||
switch (hash)
|
||||
{
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return "null";
|
||||
}
|
||||
|
||||
static const char *menu_hash_to_str_french(uint32_t hash)
|
||||
{
|
||||
switch (hash)
|
||||
@ -492,6 +503,9 @@ const char *menu_hash_to_str(uint32_t hash)
|
||||
case RETRO_LANGUAGE_FRENCH:
|
||||
ret = menu_hash_to_str_french(hash);
|
||||
break;
|
||||
case RETRO_LANGUAGE_GERMAN:
|
||||
ret = menu_hash_to_str_german(hash);
|
||||
break;
|
||||
case RETRO_LANGUAGE_DUTCH:
|
||||
ret = menu_hash_to_str_dutch(hash);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user