summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/sorcerer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/sorcerer.cpp')
-rw-r--r--src/mame/machine/sorcerer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/machine/sorcerer.cpp b/src/mame/machine/sorcerer.cpp
index 76e5651652b..b6700d76b0d 100644
--- a/src/mame/machine/sorcerer.cpp
+++ b/src/mame/machine/sorcerer.cpp
@@ -272,8 +272,7 @@ WRITE8_MEMBER(sorcerer_state::port_fe_w)
// bit 6 baud rate */
if (BIT(changed_bits, 6))
{
- m_uart->set_receiver_clock(BIT(data, 6) ? ES_UART_CLOCK*4 : ES_UART_CLOCK);
- m_uart->set_transmitter_clock(BIT(data, 6) ? ES_UART_CLOCK*4 : ES_UART_CLOCK);
+ m_uart_clock->set_unscaled_clock(BIT(data, 6) ? ES_UART_CLOCK*4 : ES_UART_CLOCK);
}
}