diff options
Diffstat (limited to 'src/emu/clifront.cpp')
-rw-r--r-- | src/emu/clifront.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/clifront.cpp b/src/emu/clifront.cpp index 96f21ba27e2..465ad6f0981 100644 --- a/src/emu/clifront.cpp +++ b/src/emu/clifront.cpp @@ -1612,7 +1612,7 @@ void cli_frontend::execute_commands(const char *exename) validity_checker valid(m_options); bool result = valid.check_all(); if (!result) - throw emu_fatalerror(MAMERR_FAILED_VALIDITY, "Validity check failed!\n"); + throw emu_fatalerror(MAMERR_FAILED_VALIDITY, "Validity check failed (%d errors, %d warnings in total)\n", valid.errors(), valid.warnings()); return; } |