summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232/keyboard.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
commit0825ce4f3b8eaab42e3682f7d01d97ce6ea0416d (patch)
tree24de29ca8cbba68740ec8cd26f15209f19c2bf0b /src/devices/bus/rs232/keyboard.cpp
parentd1d8a66ab196156ab22ba1059d714cd040b44ab6 (diff)
Cleanups and version bumpmame0168
Diffstat (limited to 'src/devices/bus/rs232/keyboard.cpp')
-rw-r--r--src/devices/bus/rs232/keyboard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/rs232/keyboard.cpp b/src/devices/bus/rs232/keyboard.cpp
index 47b82c5d71e..af8cb01420b 100644
--- a/src/devices/bus/rs232/keyboard.cpp
+++ b/src/devices/bus/rs232/keyboard.cpp
@@ -5,7 +5,7 @@
serial_keyboard_device::serial_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: generic_keyboard_device(mconfig, SERIAL_KEYBOARD, "Serial Keyboard", tag, owner, clock, "serial_keyboard", __FILE__),
device_serial_interface(mconfig, *this),
- device_rs232_port_interface(mconfig, *this),
+ device_rs232_port_interface(mconfig, *this),
m_curr_key(0),
m_key_valid(false),
m_rs232_txbaud(*this, "RS232_TXBAUD"),
@@ -19,7 +19,7 @@ serial_keyboard_device::serial_keyboard_device(const machine_config &mconfig, co
serial_keyboard_device::serial_keyboard_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)
: generic_keyboard_device(mconfig, type, name, tag, owner, clock, shortname, source),
device_serial_interface(mconfig, *this),
- device_rs232_port_interface(mconfig, *this),
+ device_rs232_port_interface(mconfig, *this),
m_curr_key(0),
m_key_valid(false),
m_rs232_txbaud(*this, "RS232_TXBAUD"),