diff options
author | 2014-04-24 04:33:12 +0000 | |
---|---|---|
committer | 2014-04-24 04:33:12 +0000 | |
commit | ee5d70084f028692f68056615db5e449840d7370 (patch) | |
tree | 470f024ea37fd2531870ee4d5f768577f10f129b /src/emu/video/tms9927.c | |
parent | a2637739971bd7eec51ca79bd2f5379afb924c16 (diff) |
fixed usage of uninitialized member in tms9927_device (nw)
Diffstat (limited to 'src/emu/video/tms9927.c')
-rw-r--r-- | src/emu/video/tms9927.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/emu/video/tms9927.c b/src/emu/video/tms9927.c index d46a4cce153..04bab5c3369 100644 --- a/src/emu/video/tms9927.c +++ b/src/emu/video/tms9927.c @@ -38,14 +38,16 @@ const device_type CRT5057 = &device_creator<crt5057_device>; tms9927_device::tms9927_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, TMS9927, "TMS9927 VTC", tag, owner, clock, "tms9927", __FILE__), device_video_interface(mconfig, *this), - m_write_vsyn(*this) + m_write_vsyn(*this), + m_reset(0) { } tms9927_device::tms9927_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_video_interface(mconfig, *this), - m_write_vsyn(*this) + m_write_vsyn(*this), + m_reset(0) { } |