mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +03:00
fix for VS builds, due to FPTR conversion (nw)
This commit is contained in:
parent
31ae631b88
commit
b6514ceb72
@ -142,7 +142,7 @@ public:
|
|||||||
for (entry_t *entry = m_table[fullhash % ARRAY_LENGTH(m_table)]; entry != nullptr; entry = entry->next())
|
for (entry_t *entry = m_table[fullhash % ARRAY_LENGTH(m_table)]; entry != nullptr; entry = entry->next())
|
||||||
if (entry->fullhash() == fullhash && entry->tag() == tag)
|
if (entry->fullhash() == fullhash && entry->tag() == tag)
|
||||||
return entry->object();
|
return entry->object();
|
||||||
return _ElementType(nullptr);
|
return _ElementType(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
// find by tag without checking anything but the hash
|
// find by tag without checking anything but the hash
|
||||||
|
Loading…
Reference in New Issue
Block a user