diff options
author | 2015-12-04 07:02:00 +0100 | |
---|---|---|
committer | 2015-12-04 07:02:00 +0100 | |
commit | 68f961927a156c47cb444c1f66258a89342d0205 (patch) | |
tree | b0d5753d5658e62ecca72d37af2f79dfc7f808bb /src/devices/bus/c64/16kb.cpp | |
parent | 029a3003631093ffaf1a0318e0c58b3e173403a3 (diff) |
clang-modernize part 2
Diffstat (limited to 'src/devices/bus/c64/16kb.cpp')
-rw-r--r-- | src/devices/bus/c64/16kb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/16kb.cpp b/src/devices/bus/c64/16kb.cpp index ff2ce6e3932..2964073aa1a 100644 --- a/src/devices/bus/c64/16kb.cpp +++ b/src/devices/bus/c64/16kb.cpp @@ -22,10 +22,10 @@ const device_type C64_16KB = &device_creator<c64_16kb_cartridge_device>; //------------------------------------------------- static MACHINE_CONFIG_FRAGMENT( c64_16kb ) - MCFG_GENERIC_CARTSLOT_ADD("roml", generic_linear_slot, NULL) + MCFG_GENERIC_CARTSLOT_ADD("roml", generic_linear_slot, nullptr) MCFG_GENERIC_EXTENSIONS("rom,bin,80") - MCFG_GENERIC_CARTSLOT_ADD("romh", generic_linear_slot, NULL) + MCFG_GENERIC_CARTSLOT_ADD("romh", generic_linear_slot, nullptr) MCFG_GENERIC_EXTENSIONS("rom,bin,a0,e0") MACHINE_CONFIG_END |