mirror of
https://github.com/holub/mame
synced 2025-07-02 08:39:21 +03:00
Fix error in debug build with SMS card options (nw)
This commit is contained in:
parent
d205197fe0
commit
1fe4b36065
@ -383,14 +383,17 @@ namespace
|
||||
std::vector<std::string> get_full_option_names(const device_image_interface &image)
|
||||
{
|
||||
std::vector<std::string> result;
|
||||
bool same_name = image.instance_name() == image.brief_instance_name();
|
||||
|
||||
result.push_back(image.instance_name());
|
||||
result.push_back(image.brief_instance_name());
|
||||
if (!same_name)
|
||||
result.push_back(image.brief_instance_name());
|
||||
|
||||
if (strcmp(image.device_typename(image.image_type()), image.instance_name().c_str()) == 0)
|
||||
{
|
||||
result.push_back(image.instance_name() + "1");
|
||||
result.push_back(image.brief_instance_name() + "1");
|
||||
if (!same_name)
|
||||
result.push_back(image.brief_instance_name() + "1");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -431,7 +431,7 @@ void core_options::add_entry(entry::shared_ptr &&entry, const char *after_header
|
||||
|
||||
void core_options::add_to_entry_map(std::string &&name, entry::shared_ptr &entry)
|
||||
{
|
||||
// it is illegal to call this method for something that already ex0ists
|
||||
// it is illegal to call this method for something that already exists
|
||||
assert(m_entrymap.find(name) == m_entrymap.end());
|
||||
|
||||
// append the entry
|
||||
|
Loading…
Reference in New Issue
Block a user