summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/aga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/aga.cpp')
-rw-r--r--src/devices/bus/isa/aga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/aga.cpp b/src/devices/bus/isa/aga.cpp
index e1c26328c44..f15abd2eb51 100644
--- a/src/devices/bus/isa/aga.cpp
+++ b/src/devices/bus/isa/aga.cpp
@@ -865,10 +865,10 @@ void isa8_aga_device::pc_aga_set_mode( AGA_MODE mode)
switch (m_mode) {
case AGA_COLOR:
- m_mc6845->set_clock( XTAL(14'318'181)/8 );
+ m_mc6845->set_unscaled_clock( XTAL(14'318'181)/8 );
break;
case AGA_MONO:
- m_mc6845->set_clock( 16257000/9 );
+ m_mc6845->set_unscaled_clock( 16257000/9 );
break;
case AGA_OFF:
break;