summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/cga.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-28 08:10:30 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-28 08:10:30 -0400
commit523e9c8cff1dc08c9f3c555254655f1d9e2c028d (patch)
tree5c79ea5d678b0f9b8ccfa33a87535902fc72f8ec /src/devices/bus/isa/cga.cpp
parentb01bc82f140fd10551bf86a7d64545488d3c9ed2 (diff)
mc6845: Use standard device method to adjust input clock (nw)
Diffstat (limited to 'src/devices/bus/isa/cga.cpp')
-rw-r--r--src/devices/bus/isa/cga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/cga.cpp b/src/devices/bus/isa/cga.cpp
index eac981b4100..78c35957884 100644
--- a/src/devices/bus/isa/cga.cpp
+++ b/src/devices/bus/isa/cga.cpp
@@ -875,7 +875,7 @@ void isa8_cga_device::mode_control_w(uint8_t data)
// The lowest bit of the mode register selects, among others, the
// input clock to the 6845.
- m_crtc->set_clock( ( m_mode_control & 1 ) ? CGA_HCLK : CGA_LCLK );
+ m_crtc->set_unscaled_clock( ( m_mode_control & 1 ) ? CGA_HCLK : CGA_LCLK );
set_palette_luts();
}