mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
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:
parent
bf43fff5d6
commit
0b33743e06
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user