From a91d1faee843b7835009aa041fcdcbeac399b2bf Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 16 Dec 2019 22:29:59 -0500 Subject: [PATCH] infoxml.cpp: Fix build (nw) --- src/frontend/mame/infoxml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/mame/infoxml.cpp b/src/frontend/mame/infoxml.cpp index 778151f6074..0dc3aa5e4f6 100644 --- a/src/frontend/mame/infoxml.cpp +++ b/src/frontend/mame/infoxml.cpp @@ -1942,9 +1942,9 @@ void output_software_lists(std::ostream &out, device_t &root, const char *root_t { for (const software_list_device &swlist : software_list_device_iterator(root)) { - if (&static_cast(swlist) == &root) + if (&static_cast(swlist) == &root) { - assert(swlist.list_name.empty()); + assert(swlist.list_name().empty()); continue; }