summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-12-19 20:13:30 +1100
committer Vas Crabb <vas@vastheman.com>2019-12-19 20:13:30 +1100
commit0990070c4a7d8c632c0d6f937243bf7ffa708eb7 (patch)
tree10570a322685450e6bdd9472a9a5f35ce2967d3c /src/frontend
parent291bfb64328a466adf482e716d69c294e62e1f35 (diff)
(nw) don't escape stuff that shouldn't be escaped
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/clifront.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp
index e50f8276567..b365b1fcde9 100644
--- a/src/frontend/mame/clifront.cpp
+++ b/src/frontend/mame/clifront.cpp
@@ -1136,7 +1136,7 @@ void cli_frontend::output_single_softlist(std::ostream &out, software_list_devic
// dump checksum information only if there is a known dump
util::hash_collection hashes(ROM_GETHASHDATA(rom));
if (!hashes.flag(util::hash_collection::FLAG_NO_DUMP))
- util::stream_format(out, " %s", util::xml::normalize_string(hashes.attribute_string().c_str()));
+ util::stream_format(out, " %s", hashes.attribute_string());
else
out << " status=\"nodump\"";