diff options
Diffstat (limited to 'src/devices/machine/68340dma.cpp')
-rw-r--r-- | src/devices/machine/68340dma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68340dma.cpp b/src/devices/machine/68340dma.cpp index 9ee0ae5114e..84f17f6c1cb 100644 --- a/src/devices/machine/68340dma.cpp +++ b/src/devices/machine/68340dma.cpp @@ -10,7 +10,7 @@ READ32_MEMBER( m68340cpu_device::m68340_internal_dma_r ) { m68340cpu_device *m68k = this; m68340_dma* dma = m68k->m68340DMA; - assert(dma != NULL); + assert(dma != nullptr); if (dma) { @@ -25,7 +25,7 @@ WRITE32_MEMBER( m68340cpu_device::m68340_internal_dma_w ) { m68340cpu_device *m68k = this; m68340_dma* dma = m68k->m68340DMA; - assert(dma != NULL); + assert(dma != nullptr); if (dma) { |