diff options
Diffstat (limited to 'src/devices/machine/terminal.cpp')
-rw-r--r-- | src/devices/machine/terminal.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/machine/terminal.cpp b/src/devices/machine/terminal.cpp index 081266f801d..6b1b26b8c85 100644 --- a/src/devices/machine/terminal.cpp +++ b/src/devices/machine/terminal.cpp @@ -143,9 +143,9 @@ static const UINT8 terminal_font[256*16] = generic_terminal_device::generic_terminal_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : device_t(mconfig, type, name, tag, owner, clock, shortname, source), m_palette(*this, "palette"), - m_io_term_conf(*this, "TERM_CONF"), - m_x_pos(0), - m_framecnt(0), + m_io_term_conf(*this, "TERM_CONF"), + m_x_pos(0), + m_framecnt(0), m_y_pos(0), m_keyboard_cb(*this) { @@ -153,12 +153,12 @@ generic_terminal_device::generic_terminal_device(const machine_config &mconfig, generic_terminal_device::generic_terminal_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, GENERIC_TERMINAL, "Generic Terminal", tag, owner, clock, "generic_terminal", __FILE__), - m_palette(*this, "palette"), - m_io_term_conf(*this, "TERM_CONF"), - m_x_pos(0), - m_framecnt(0), - m_y_pos(0), - m_keyboard_cb(*this) + m_palette(*this, "palette"), + m_io_term_conf(*this, "TERM_CONF"), + m_x_pos(0), + m_framecnt(0), + m_y_pos(0), + m_keyboard_cb(*this) { } |