diff options
Diffstat (limited to 'src/devices/bus/rs232/pty.cpp')
-rw-r--r-- | src/devices/bus/rs232/pty.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/rs232/pty.cpp b/src/devices/bus/rs232/pty.cpp index 0039925ac85..72e8f22dd57 100644 --- a/src/devices/bus/rs232/pty.cpp +++ b/src/devices/bus/rs232/pty.cpp @@ -18,7 +18,8 @@ pseudo_terminal_device::pseudo_terminal_device(const machine_config &mconfig, co m_rs232_parity(*this, "RS232_PARITY"), m_rs232_stopbits(*this, "RS232_STOPBITS"), m_input_count(0), - m_input_index(0) + m_input_index(0), + m_timer_poll(NULL) { } |