diff options
author | 2015-12-04 07:02:45 +0100 | |
---|---|---|
committer | 2015-12-04 07:02:45 +0100 | |
commit | 0c56ac848dd0eba359500d444ecbb51f215ff5b9 (patch) | |
tree | ad3444449470cec94ccaffd174c5a4d1bc90d1e1 /src/devices/sound/n63701x.cpp | |
parent | 68f961927a156c47cb444c1f66258a89342d0205 (diff) |
clang-modernize part 3
Diffstat (limited to 'src/devices/sound/n63701x.cpp')
-rw-r--r-- | src/devices/sound/n63701x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/n63701x.cpp b/src/devices/sound/n63701x.cpp index a1308c36713..d544eb6e4ee 100644 --- a/src/devices/sound/n63701x.cpp +++ b/src/devices/sound/n63701x.cpp @@ -35,7 +35,7 @@ namco_63701x_device::namco_63701x_device(const machine_config &mconfig, const ch : device_t(mconfig, NAMCO_63701X, "Namco 63701X", tag, owner, clock, "namco_63701x", __FILE__), device_sound_interface(mconfig, *this), m_rom(*this, DEVICE_SELF), - m_stream(NULL) + m_stream(nullptr) { } |