diff options
author | 2021-11-12 18:38:18 +1100 | |
---|---|---|
committer | 2021-11-12 18:38:18 +1100 | |
commit | 5c8e06be77c7d7ee72b8eaa3d2dc2bfee427ea1c (patch) | |
tree | 3dd17d2a193bdddc5c682a9e75d4c1b0153f0b4b /src/emu/emuopts.cpp | |
parent | dc6ddf122cfbf98c1bf9d2ba705c6adfec98d847 (diff) |
-osd/windows: Show error message box on a separate thread (see MT08118).
-emu/emuopts.cpp: Default to built-in UI language rather than English.
* The external English message catalog is a placeholder anyway.
-cpu/mcs48: Corrected comments - D87xxH have UVEPROM, not EEPROM.
Diffstat (limited to 'src/emu/emuopts.cpp')
-rw-r--r-- | src/emu/emuopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp index bfe83daec16..8959c00da03 100644 --- a/src/emu/emuopts.cpp +++ b/src/emu/emuopts.cpp @@ -205,7 +205,7 @@ const options_entry emu_options::s_option_entries[] = { OPTION_RAMSIZE ";ram", nullptr, OPTION_STRING, "size of RAM (if supported by driver)" }, { OPTION_CONFIRM_QUIT, "0", OPTION_BOOLEAN, "ask for confirmation before exiting" }, { OPTION_UI_MOUSE, "1", OPTION_BOOLEAN, "display UI mouse cursor" }, - { OPTION_LANGUAGE ";lang", "English", OPTION_STRING, "set UI display language" }, + { OPTION_LANGUAGE ";lang", "", OPTION_STRING, "set UI display language" }, { OPTION_NVRAM_SAVE ";nvwrite", "1", OPTION_BOOLEAN, "save NVRAM data on exit" }, { nullptr, nullptr, OPTION_HEADER, "SCRIPTING OPTIONS" }, |