summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/t6a04.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:44:23 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:45:32 +0100
commitb7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch)
tree0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/video/t6a04.cpp
parentae2f72348d5d2c5d55f1e85cc133912638d0effb (diff)
Fixed uninitialized class members
Diffstat (limited to 'src/devices/video/t6a04.cpp')
-rw-r--r--src/devices/video/t6a04.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/video/t6a04.cpp b/src/devices/video/t6a04.cpp
index 89bf9cf716a..771963d016f 100644
--- a/src/devices/video/t6a04.cpp
+++ b/src/devices/video/t6a04.cpp
@@ -37,7 +37,8 @@ void t6a04_device::device_validity_check(validity_checker &valid) const
//-------------------------------------------------
t6a04_device::t6a04_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, T6A04, "T6A04", tag, owner, clock, "t6a04", __FILE__),
+ device_t(mconfig, T6A04, "T6A04", tag, owner, clock, "t6a04", __FILE__), m_busy_flag(0), m_display_on(0), m_contrast(0), m_xpos(0), m_ypos(0), m_zpos(0), m_direction(0),
+ m_active_counter(0), m_word_len(0), m_opa1(0), m_opa2(0), m_output_reg(0),
m_height(0),
m_width(0)
{