summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pc_lpt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pc_lpt.cpp')
-rw-r--r--src/devices/machine/pc_lpt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/pc_lpt.cpp b/src/devices/machine/pc_lpt.cpp
index 319a5cb0a2c..f483c7bb336 100644
--- a/src/devices/machine/pc_lpt.cpp
+++ b/src/devices/machine/pc_lpt.cpp
@@ -15,7 +15,7 @@ const device_type PC_LPT = &device_creator<pc_lpt_device>;
pc_lpt_device::pc_lpt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, PC_LPT, "PC-LPT", tag, owner, clock, "pc_lpt", __FILE__),
m_irq(1),
- m_data(0xff),
+ m_data(0xff), m_control(0),
m_irq_enabled(1),
m_centronics_ack(1),
m_irq_handler(*this),