mirror of
https://github.com/holub/mame
synced 2025-06-06 12:53:46 +03:00
Fixed listxml sample output.
The listxml dosn't output the game samples.
This fixed commit: tagmap_t to std::unordered_map or std::unordered_set where applicable…
3414b0166e
This commit is contained in:
parent
7f1e7cf502
commit
6d39992775
@ -620,7 +620,7 @@ void info_xml_creator::output_sample(device_t &device)
|
||||
for (const char *samplename = iter.first(); samplename != nullptr; samplename = iter.next())
|
||||
{
|
||||
// filter out duplicates
|
||||
if (already_printed.insert(samplename).second)
|
||||
if (!(already_printed.insert(samplename)).second)
|
||||
continue;
|
||||
|
||||
// output the sample name
|
||||
|
Loading…
Reference in New Issue
Block a user