Update language list in sample files (#17829)

This commit is contained in:
Michael Burgardt 2025-05-08 21:57:00 +00:00 committed by GitHub
parent 7b37f85a99
commit f9bdd7bc87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 25 additions and 2 deletions

View File

@ -167,6 +167,13 @@ struct retro_core_options_v2 *options_intl[RETRO_LANGUAGE_LAST] = {
NULL, /* RETRO_LANGUAGE_SWEDISH */
NULL, /* RETRO_LANGUAGE_UKRAINIAN */
NULL, /* RETRO_LANGUAGE_CZECH */
NULL, /* RETRO_LANGUAGE_CATALAN_VALENCIA */
NULL, /* RETRO_LANGUAGE_CATALAN */
NULL, /* RETRO_LANGUAGE_BRITISH_ENGLISH */
NULL, /* RETRO_LANGUAGE_HUNGARIAN */
NULL, /* RETRO_LANGUAGE_BELARUSIAN */
NULL, /* RETRO_LANGUAGE_GALICIAN */
NULL, /* RETRO_LANGUAGE_NORWEGIAN */
};
#endif

View File

@ -125,7 +125,13 @@ struct retro_core_option_definition *option_defs_intl[RETRO_LANGUAGE_LAST] = {
NULL, /* RETRO_LANGUAGE_SWEDISH */
NULL, /* RETRO_LANGUAGE_UKRAINIAN */
NULL, /* RETRO_LANGUAGE_CZECH */
NULL, /* RETRO_LANGUAGE_CATALAN_VALENCIA */
NULL, /* RETRO_LANGUAGE_CATALAN */
NULL, /* RETRO_LANGUAGE_BRITISH_ENGLISH */
NULL, /* RETRO_LANGUAGE_HUNGARIAN */
NULL, /* RETRO_LANGUAGE_BELARUSIAN */
NULL, /* RETRO_LANGUAGE_GALICIAN */
NULL, /* RETRO_LANGUAGE_NORWEGIAN */
};
#endif

View File

@ -140,6 +140,13 @@ struct retro_core_option_definition *option_defs_intl[RETRO_LANGUAGE_LAST] = {
NULL, /* RETRO_LANGUAGE_SWEDISH */
NULL, /* RETRO_LANGUAGE_UKRAINIAN */
NULL, /* RETRO_LANGUAGE_CZECH */
NULL, /* RETRO_LANGUAGE_CATALAN_VALENCIA */
NULL, /* RETRO_LANGUAGE_CATALAN */
NULL, /* RETRO_LANGUAGE_BRITISH_ENGLISH */
NULL, /* RETRO_LANGUAGE_HUNGARIAN */
NULL, /* RETRO_LANGUAGE_BELARUSIAN */
NULL, /* RETRO_LANGUAGE_GALICIAN */
NULL, /* RETRO_LANGUAGE_NORWEGIAN */
};
#endif

View File

@ -139,7 +139,7 @@ struct retro_core_options_v2 options_us = {
#ifndef HAVE_NO_LANGEXTRA
struct retro_core_options_v2 *options_intl[RETRO_LANGUAGE_LAST] = {
&options_us, /* RETRO_LANGUAGE_ENGLISH */
&options_us, /* RETRO_LANGUAGE_ENGLISH */
&options_ja, /* RETRO_LANGUAGE_JAPANESE */
&options_fr, /* RETRO_LANGUAGE_FRENCH */
&options_es, /* RETRO_LANGUAGE_SPANISH */
@ -171,6 +171,9 @@ struct retro_core_options_v2 *options_intl[RETRO_LANGUAGE_LAST] = {
&options_ca, /* RETRO_LANGUAGE_CATALAN */
&options_en, /* RETRO_LANGUAGE_BRITISH_ENGLISH */
&options_hu, /* RETRO_LANGUAGE_HUNGARIAN */
&options_be, /* RETRO_LANGUAGE_BELARUSIAN */
&options_gl, /* RETRO_LANGUAGE_GALICIAN */
&options_no, /* RETRO_LANGUAGE_NORWEGIAN */
};
#endif