summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/clifront.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/clifront.cpp')
-rw-r--r--src/frontend/mame/clifront.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp
index 191ae747a4c..19160cc9784 100644
--- a/src/frontend/mame/clifront.cpp
+++ b/src/frontend/mame/clifront.cpp
@@ -1118,8 +1118,6 @@ const char cli_frontend::s_softlist_xml_dtd[] =
void cli_frontend::output_single_softlist(std::ostream &out, software_list_device &swlistdev)
{
util::stream_format(out, "\t<softwarelist name=\"%s\" description=\"%s\">\n", swlistdev.list_name(), util::xml::normalize_string(swlistdev.description().c_str()));
- if (!swlistdev.notes().empty())
- util::stream_format(out, "\t\t<notes>%s</notes>\n", util::xml::normalize_string(swlistdev.notes().c_str()));
for (const software_info &swinfo : swlistdev.get_info())
{
util::stream_format(out, "\t\t<software name=\"%s\"", util::xml::normalize_string(swinfo.shortname().c_str()));
@@ -1133,8 +1131,6 @@ void cli_frontend::output_single_softlist(std::ostream &out, software_list_devic
util::stream_format(out, "\t\t\t<description>%s</description>\n", util::xml::normalize_string(swinfo.longname().c_str()));
util::stream_format(out, "\t\t\t<year>%s</year>\n", util::xml::normalize_string(swinfo.year().c_str()));
util::stream_format(out, "\t\t\t<publisher>%s</publisher>\n", util::xml::normalize_string(swinfo.publisher().c_str()));
- if (!swinfo.notes().empty())
- util::stream_format(out, "\t\t\t<notes>%s</notes>\n", util::xml::normalize_string(swinfo.notes().c_str()));
for (const auto &flist : swinfo.info())
util::stream_format(out, "\t\t\t<info name=\"%s\" value=\"%s\"/>\n", flist.name(), util::xml::normalize_string(flist.value().c_str()));
retro' /> Vas Crabb2020-07-011-4/+14 * -bus/coco/coco_ram.cpp: fix a rather obvious bug in shift/mask Vas Crabb2020-06-251-1/+1 * srcclean and cleanup (nw) Vas Crabb2020-06-211-3/+3 * Fix for UI Paste with the Default Serial Terminal (#6648) Frank Palazzolo2020-05-061-31/+41 * PG police (nw) hap2020-02-171-1/+1 * fixed some clang-tidy warnings (nw) (#6236) Oliver Stöneberg2020-01-301-3/+3 * natkeyboard.cpp: Turn logging back off (nw) AJR2020-01-101-1/+1 * input_sdl: Process control characters so that the natural keyboard can see th... AJR2020-01-101-17/+20 * Merge pull request #5614 from npwoods/natkeyboard_std_array R. Belmont2019-09-111-7/+4 |\ | * Changing some arrays to use std::array<> in natkeyboard npwoods2019-09-101-7/+4 * | Changed osd_get_clipboard_text() to return std::string (#5615) npwoods2019-09-111-10/+3 |/ * Exposed natual_keyboard object to LUA (#5364) npwoods2019-07-201-0/+14 * Moving paste() from mame_ui_manager class to natural_keyboard class, npwoods2019-07-191-0/+21 * Revert "Send LF with CR when using natuaral keyboard on systems with a line f... AJR2018-08-111-11/+0 * Misc. fixes for recent commits (nw) AJR2018-08-101-1/+0 * Send LF with CR when using natuaral keyboard on systems with a line feed key