Remove unhelpful assert (nw)

This commit is contained in:
AJR 2017-05-18 21:51:54 -04:00
parent c9f0cef555
commit 895a27005d

View File

@ -235,7 +235,6 @@ device_t *machine_config::device_find(device_t *owner, const char *tag)
// find the original device by relative tag (must exist)
assert(owner != nullptr);
device_t *device = owner->subdevice(tag);
assert(device != nullptr);
if (device == nullptr)
throw emu_fatalerror("Unable to find device '%s'\n", tag);