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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/terminal.c b/src/mess/machine/terminal.c
index 1d0e1489b4e..3aa9214323c 100644
--- a/src/mess/machine/terminal.c
+++ b/src/mess/machine/terminal.c
@@ -333,10 +333,10 @@ void generic_terminal_device::device_start()
void generic_terminal_device::device_config_complete()
{
- const _terminal_interface *intf = reinterpret_cast<const _terminal_interface *>(static_config());
+ const terminal_interface *intf = reinterpret_cast<const terminal_interface *>(static_config());
if(intf != NULL)
{
- *static_cast<_terminal_interface *>(this) = *intf;
+ *static_cast<terminal_interface *>(this) = *intf;
}
else
{