diff options
Diffstat (limited to 'docs/release/src/frontend/mame/audit.cpp')
-rw-r--r-- | docs/release/src/frontend/mame/audit.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/release/src/frontend/mame/audit.cpp b/docs/release/src/frontend/mame/audit.cpp index d3f9790a4e0..7c132b29ceb 100644 --- a/docs/release/src/frontend/mame/audit.cpp +++ b/docs/release/src/frontend/mame/audit.cpp @@ -273,7 +273,10 @@ media_auditor::summary media_auditor::summarize(const char *name, std::ostream * // output the game name, file name, and length (if applicable) if (output) { - util::stream_format(*output, "%-12s: %s", name, record.name()); + if (name) + util::stream_format(*output, "%-12s: %s", name, record.name()); + else + util::stream_format(*output, "%s", record.name()); if (record.expected_length() > 0) util::stream_format(*output, " (%d bytes)", record.expected_length()); *output << " - "; |