diff options
Diffstat (limited to 'src/devices/bus/nes/ggenie.cpp')
-rw-r--r-- | src/devices/bus/nes/ggenie.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/nes/ggenie.cpp b/src/devices/bus/nes/ggenie.cpp index 69d4a103313..148b9b568ac 100644 --- a/src/devices/bus/nes/ggenie.cpp +++ b/src/devices/bus/nes/ggenie.cpp @@ -36,7 +36,7 @@ const device_type NES_GGENIE = &device_creator<nes_ggenie_device>; nes_ggenie_device::nes_ggenie_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : nes_nrom_device(mconfig, NES_GGENIE, "NES Cart Game Genie PCB", tag, owner, clock, "nes_ggenie", __FILE__), - m_ggslot(*this, "gg_slot"), + m_ggslot(*this, "gg_slot"), m_gg_bypass(0) { } @@ -259,7 +259,7 @@ READ8_MEMBER(nes_ggenie_device::nt_r) //------------------------------------------------- static MACHINE_CONFIG_FRAGMENT( sub_slot ) - MCFG_NES_CARTRIDGE_ADD("gg_slot", nes_cart, NULL) + MCFG_NES_CARTRIDGE_ADD("gg_slot", nes_cart, nullptr) MCFG_NES_CARTRIDGE_NOT_MANDATORY MACHINE_CONFIG_END |