From 1a51fb63b9577914241e46e7fd3558037d204644 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 23 May 2018 18:59:15 -0400 Subject: [PATCH] wicat: Slight video depessimization (nw) --- src/mame/drivers/wicat.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/wicat.cpp b/src/mame/drivers/wicat.cpp index 25e9d3c24cb..f05116e50e3 100644 --- a/src/mame/drivers/wicat.cpp +++ b/src/mame/drivers/wicat.cpp @@ -761,14 +761,14 @@ WRITE_LINE_MEMBER(wicat_state::crtc_cb) I8275_DRAW_CHARACTER_MEMBER(wicat_state::wicat_display_pixels) { - uint8_t romdata = m_chargen->base()[((charcode << 4) | linecount) + 1]; + uint8_t romdata = m_chargen->base()[(charcode << 4) | linecount]; const pen_t *pen = m_palette->pens(); for (int i = 0; i < 8; i++) { int color = (romdata >> (7-i)) & 0x01; - if(vsp || linecount > 9) + if(vsp) color = 0; bitmap.pix32(y, x + i) = pen[color]; @@ -866,7 +866,7 @@ MACHINE_CONFIG_START(wicat_state::wicat) MCFG_RS232_DSR_HANDLER(WRITELINE("uart5",mc2661_device,dsr_w)) MCFG_RS232_CTS_HANDLER(WRITELINE("uart5",mc2661_device,cts_w)) - MCFG_DEVICE_ADD("ledlatch", LS259, 0) + MCFG_DEVICE_ADD("ledlatch", LS259, 0) // U19 on I/O board MCFG_ADDRESSABLE_LATCH_Q0_OUT_CB(WRITELINE(*this, wicat_state, adir_w)) MCFG_ADDRESSABLE_LATCH_Q1_OUT_CB(WRITELINE(*this, wicat_state, bdir_w)) MCFG_ADDRESSABLE_LATCH_Q2_OUT_CB(OUTPUT("led1")) MCFG_DEVCB_INVERT // 0 = on, 1 = off