diff options
Diffstat (limited to 'src/devices/bus/bml3/bml3mp1805.cpp')
-rw-r--r-- | src/devices/bus/bml3/bml3mp1805.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bml3/bml3mp1805.cpp b/src/devices/bus/bml3/bml3mp1805.cpp index 039a7b1dfa4..e1b2317b7c6 100644 --- a/src/devices/bus/bml3/bml3mp1805.cpp +++ b/src/devices/bus/bml3/bml3mp1805.cpp @@ -27,7 +27,7 @@ static const floppy_interface bml3_mp1805_floppy_interface = { FLOPPY_STANDARD_3_SSDD, LEGACY_FLOPPY_OPTIONS_NAME(default), - NULL + nullptr }; WRITE_LINE_MEMBER( bml3bus_mp1805_device::bml3_mc6843_intrq_w ) @@ -92,7 +92,7 @@ WRITE8_MEMBER( bml3bus_mp1805_device::bml3_mp1805_w) // TODO: MESS UI for flipping disk? Note that D88 images are double-sided, but the physical drive is single-sided int side = 0; int motor = BIT(data, 7); - const char *floppy_name = NULL; + const char *floppy_name = nullptr; switch (drive_select) { case 1: drive = 0; |