summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/terminal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/terminal.c')
-rw-r--r--src/mess/machine/terminal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/terminal.c b/src/mess/machine/terminal.c
index 343ca7a0e1c..f9f01593d77 100644
--- a/src/mess/machine/terminal.c
+++ b/src/mess/machine/terminal.c
@@ -138,15 +138,15 @@ 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)
: device_t(mconfig, type, name, tag, owner, clock),
- m_io_term_frame(*this, "TERM_FRAME"),
- m_io_term_conf(*this, "TERM_CONF")
+ m_io_term_frame(*this, "TERM_FRAME"),
+ m_io_term_conf(*this, "TERM_CONF")
{
}
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),
- m_io_term_frame(*this, "TERM_FRAME"),
- m_io_term_conf(*this, "TERM_CONF")
+ m_io_term_frame(*this, "TERM_FRAME"),
+ m_io_term_conf(*this, "TERM_CONF")
{
}