summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/c140.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-04-24 15:15:04 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-04-24 15:38:49 +0200
commit96d123b42c87007222bb545878cdef0116b60885 (patch)
treea611581b57d4debe784f1134a3de95426a7ba592 /src/devices/sound/c140.cpp
parentc2c22570779f69e6921499b7abeb75f6db3d7822 (diff)
NULL->nullptr, instead of DEVCB_NULL use always DEVCB_NOOP to prevent confusion (nw)
Diffstat (limited to 'src/devices/sound/c140.cpp')
-rw-r--r--src/devices/sound/c140.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/c140.cpp b/src/devices/sound/c140.cpp
index 350ba6f047b..3e3efc193cb 100644
--- a/src/devices/sound/c140.cpp
+++ b/src/devices/sound/c140.cpp
@@ -113,7 +113,7 @@ void c140_device::device_start()
m_stream = stream_alloc(0, 2, m_sample_rate);
- if (m_rom_ptr != NULL)
+ if (m_rom_ptr != nullptr)
{
m_pRom = m_rom_ptr;
}