summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-09-19 14:31:11 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-09-19 14:31:11 +1000
commit5af255d4c4726a84421b28e674b0b25d2313bcb3 (patch)
treede4717020e3334d35c445edeb793d37703b8000e
parent607b8ac369f882d5c066fbe56ea554bcbb568a91 (diff)
(nw) fixed presentation of error message about invalid INI options.
-rw-r--r--src/frontend/mame/mameopts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/mameopts.cpp b/src/frontend/mame/mameopts.cpp
index 47f1a71c595..1ab0b81874f 100644
--- a/src/frontend/mame/mameopts.cpp
+++ b/src/frontend/mame/mameopts.cpp
@@ -143,7 +143,7 @@ void mame_options::parse_one_ini(emu_options &options, const char *basename, int
catch (options_exception &ex)
{
if (error_stream)
- util::stream_format(*error_stream, "While parsing %s:\n%s\n", ex.message(), file.fullpath(), ex.message());
+ util::stream_format(*error_stream, "While parsing %s:\n%s\n", file.fullpath(), ex.message());
return;
}