summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2019-11-27 21:37:24 -0500
committer arbee <rb6502@users.noreply.github.com>2019-11-27 21:37:24 -0500
commit6b049e33d6aea32d9d9f9c46fe84257c2d82fe48 (patch)
tree4abd769fa13aaebba28b0def74a63d7a2b991f1d /src/mame/video
parentabc4dadd53fd5696774cc7067411135d960c13fe (diff)
m68kmmu: Fixed issues with Domain/OS and its installer crashing [Hans Ostermeyer]
apollo: Fixed failures in DEX DISP7C tests 170 and 210 and selftest TE [Hans Ostermeyer]
Diffstat (limited to 'src/mame/video')
-rw-r--r--src/mame/video/apollo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/video/apollo.cpp b/src/mame/video/apollo.cpp
index 42a07982712..5a24cda3962 100644
--- a/src/mame/video/apollo.cpp
+++ b/src/mame/video/apollo.cpp
@@ -1473,7 +1473,8 @@ WRITE8_MEMBER( apollo_graphics_15i::apollo_ccr_w )
{
MLOG1(("apollo_graphics_15i::apollo_ccr_w: writing LUT data register with RW = 1 in LUT Control register"));
}
- else if ((m_lut_control & LUT_AD_CS) == 0)
+
+ if ((m_lut_control & LUT_AD_CS) == 0)
{
m_ad_result = c8p_read_adc(data);
m_ad_pending = 1;