diff options
author | 2015-11-19 19:44:23 +0100 | |
---|---|---|
committer | 2015-11-19 19:45:32 +0100 | |
commit | b7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch) | |
tree | 0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/video/sed1200.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/video/sed1200.cpp')
-rw-r--r-- | src/devices/video/sed1200.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/sed1200.cpp b/src/devices/video/sed1200.cpp index 029ab01c236..06cd7ba7e83 100644 --- a/src/devices/video/sed1200.cpp +++ b/src/devices/video/sed1200.cpp @@ -32,7 +32,7 @@ ROM_START( sed1200x0b ) ROM_END sed1200_device::sed1200_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : - device_t(mconfig, type, name, tag, owner, clock, shortname, source) + device_t(mconfig, type, name, tag, owner, clock, shortname, source), cursor_direction(false), cursor_blinking(false), cursor_full(false), cursor_on(false), display_on(false), cursor_address(0), cgram_address(0), cgrom(nullptr) { } @@ -83,7 +83,7 @@ void sed1200_device::device_start() if(memregion("cgrom")) cgrom = memregion("cgrom")->base(); else - cgrom = NULL; + cgrom = nullptr; soft_reset(); } |