dpb7000.cpp: Fix insidious coding error (nw)

Leaving out the termination resulted in the following wonderfully misleading error message when trying to so much as list or validate the driver on my OS X build:

> Assertion failed: (!owner), function create_driver, file ../../../../../src/emu/device.h, line 214.
This commit is contained in:
AJR 2020-05-10 14:47:40 -04:00
parent bf43fff5d6
commit 0b33743e06

View File

@ -1746,7 +1746,8 @@ uint32_t dpb7000_state::store_screen_update(screen_device &screen, bitmap_rgb32
static const floppy_format_type dpb7000_floppy_formats[] =
{
FLOPPY_HFE_FORMAT,
FLOPPY_MFM_FORMAT
FLOPPY_MFM_FORMAT,
nullptr
};
static void dpb7000_floppies(device_slot_interface &device)