diff options
author | 2019-11-27 10:29:17 +1100 | |
---|---|---|
committer | 2019-11-27 10:29:17 +1100 | |
commit | 9a69fc85f3088ea8900b0c7f6488dbf60b199f8e (patch) | |
tree | 427f139707eff088046f74e3915dc301e8091c6d /docs/release/src/emu/validity.cpp | |
parent | 3a6be1140d695b71f13d365ee6481bbed6efe687 (diff) |
0.216 Release filestag216
Diffstat (limited to 'docs/release/src/emu/validity.cpp')
-rw-r--r-- | docs/release/src/emu/validity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/release/src/emu/validity.cpp b/docs/release/src/emu/validity.cpp index 2299d7d8381..d1764757f44 100644 --- a/docs/release/src/emu/validity.cpp +++ b/docs/release/src/emu/validity.cpp @@ -238,7 +238,7 @@ bool validity_checker::check_all_matching(const char *string) // if we failed to match anything, it if (string && !validated_any) - throw emu_fatalerror(EMU_ERR_NO_SUCH_GAME, "No matching systems found for '%s'", string); + throw emu_fatalerror(EMU_ERR_NO_SUCH_SYSTEM, "No matching systems found for '%s'", string); return !(m_errors > 0 || m_warnings > 0); } @@ -318,7 +318,7 @@ void validity_checker::validate_one(const game_driver &driver) } catch (emu_fatalerror &err) { - osd_printf_error("Fatal error %s", err.string()); + osd_printf_error("Fatal error %s", err.what()); } // if we had warnings or errors, output |