Eliminate remaining this == NULL entry

This commit is contained in:
Scott Stone 2015-11-19 00:27:33 -05:00 committed by Miodrag Milanovic
parent cccc998b20
commit b74eab06c5

View File

@ -108,10 +108,6 @@ memory_share *device_t::memshare(const char *_tag) const
memory_bank *device_t::membank(const char *_tag) const
{
// safety first
if (this == nullptr)
return nullptr;
// build a fully-qualified name and look it up
return machine().memory().bank(subtag(_tag).c_str());
}