diff options
author | 2013-03-06 20:59:40 +0000 | |
---|---|---|
committer | 2013-03-06 20:59:40 +0000 | |
commit | cac3564b54400e79cf886c7ceb5c64b890769285 (patch) | |
tree | 8e4671bf9f256b13e9054bba6548bf275a901470 /src/emu/machine/i8255.c | |
parent | 866dff34620551731e26a4fcce4a117aeca3cd37 (diff) |
fixed uninitialized member in src/emu/machine/i8255.c (nw)
Diffstat (limited to 'src/emu/machine/i8255.c')
-rw-r--r-- | src/emu/machine/i8255.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/i8255.c b/src/emu/machine/i8255.c index e7145df05f8..192d5af3fd4 100644 --- a/src/emu/machine/i8255.c +++ b/src/emu/machine/i8255.c @@ -263,6 +263,7 @@ i8255_device::i8255_device(const machine_config &mconfig, const char *tag, devic : device_t(mconfig, I8255, "I8255", tag, owner, clock) { m_intr[PORT_A] = m_intr[PORT_B] = 0; + m_control = 0; } |