diff options
author | 2016-03-06 13:18:09 +1100 | |
---|---|---|
committer | 2016-03-06 13:18:09 +1100 | |
commit | 04a6b500c30b47d3925d2f226b209350be7cc431 (patch) | |
tree | d6f83b130e6ff518c1e317b4cf09be2793a2fe44 /src/emu/ui/ui.cpp | |
parent | c98fe94bd1dc6e6a36c6ec086ada05440da13cc5 (diff) |
Don't bother to localise error log for now
Diffstat (limited to 'src/emu/ui/ui.cpp')
-rw-r--r-- | src/emu/ui/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp index 8843675f57e..1933db93bcd 100644 --- a/src/emu/ui/ui.cpp +++ b/src/emu/ui/ui.cpp @@ -173,7 +173,7 @@ static void load_ui_options(running_machine &machine) { bool result = machine.ui().options().parse_ini_file((core_file&)file, OPTION_PRIORITY_MAME_INI, OPTION_PRIORITY_DRIVER_INI, error); if (!result) - osd_printf_error(_("**Error loading ui.ini**")); + osd_printf_error("**Error loading ui.ini**"); } } |