Default the language to the system language.

This commit is contained in:
OBattler
2025-04-09 12:19:24 +02:00
parent fb449f39a4
commit f5fcebfbaa
2 changed files with 3 additions and 1 deletions

View File

@@ -1840,6 +1840,8 @@ config_load(void)
cassette_pcm = 0;
cassette_ui_writeprot = 0;
lang_id = DEFAULT_LANGUAGE;
config_log("Config file not present or invalid!\n");
} else {
load_general(); /* General */

View File

@@ -45,7 +45,7 @@
#define MAX_UUID_LEN 64
/* Default language 0xFFFF = from system, 0x409 = en-US */
#define DEFAULT_LANGUAGE 0x0409
#define DEFAULT_LANGUAGE 0xffff
#define POSTCARDS_NUM 4
#define POSTCARD_MASK (POSTCARDS_NUM - 1)