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/machine/mccs1850.cpp | |
parent | 68f961927a156c47cb444c1f66258a89342d0205 (diff) |
clang-modernize part 3
Diffstat (limited to 'src/devices/machine/mccs1850.cpp')
-rw-r--r-- | src/devices/machine/mccs1850.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/mccs1850.cpp b/src/devices/machine/mccs1850.cpp index b037f184bfc..72fb12a667a 100644 --- a/src/devices/machine/mccs1850.cpp +++ b/src/devices/machine/mccs1850.cpp @@ -374,7 +374,7 @@ void mccs1850_device::nvram_default() { memset(m_ram, 0xff, RAM_SIZE); - if (machine().root_device().memregion(tag()) != NULL) + if (machine().root_device().memregion(tag()) != nullptr) { UINT8 *nvram = machine().root_device().memregion(tag())->base(); |