diff options
author | 2014-04-23 18:27:53 +0000 | |
---|---|---|
committer | 2014-04-23 18:27:53 +0000 | |
commit | 2927901e5b35751bb3bcfb082d62b4f4493b1690 (patch) | |
tree | 28f737cc1580d1d8ccec8b48ecc675657d7fc8e8 /src/emu/machine/i8251.c | |
parent | 1f5b5d88930cea304ac22d20cc49c2382867a636 (diff) |
fixed usage of uninitialized member in i8251_device (nw)
Diffstat (limited to 'src/emu/machine/i8251.c')
-rw-r--r-- | src/emu/machine/i8251.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/machine/i8251.c b/src/emu/machine/i8251.c index 3da1bb84ebe..6c73a9b90ba 100644 --- a/src/emu/machine/i8251.c +++ b/src/emu/machine/i8251.c @@ -39,7 +39,8 @@ i8251_device::i8251_device(const machine_config &mconfig, const char *tag, devic m_txempty_handler(*this), m_syndet_handler(*this), m_cts(1), - m_dsr(1) + m_dsr(1), + m_txc(0) { } |