diff options
Diffstat (limited to 'src/devices/machine/pci9050.cpp')
-rw-r--r-- | src/devices/machine/pci9050.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pci9050.cpp b/src/devices/machine/pci9050.cpp index 2687966c718..4a8ad2dd704 100644 --- a/src/devices/machine/pci9050.cpp +++ b/src/devices/machine/pci9050.cpp @@ -44,8 +44,8 @@ pci9050_device::pci9050_device(const machine_config &mconfig, const char *tag, d : pci_device(mconfig, PCI9050, "PLX PCI9050 PCI to Local Bus Bridge", tag, owner, clock, "pci9050", __FILE__) { for(int i=0; i<4; i++) { - m_devices[i] = NULL; - m_names[i] = NULL; + m_devices[i] = nullptr; + m_names[i] = nullptr; } } |