Skip to content
This repository was archived by the owner on Sep 18, 2021. It is now read-only.

Commit b4e1109

Browse files
author
wfp
committed
[ISA_EGA] Blinking should only happen when blinking has been enabled (nw)
1 parent 49383af commit b4e1109

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mess/video/isa_ega.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,8 @@ static CRTC_EGA_UPDATE_ROW( pc_ega_text )
818818
}
819819
else
820820
{
821-
if ( ( attr & 0x80 ) && ( ega->m_frame_cnt & 0x10 ) )
821+
/* Check for blinking */
822+
if ( ( ega->m_attribute.data[0x10] & 0x08 ) && ( attr & 0x80 ) && ( ega->m_frame_cnt & 0x10 ) )
822823
{
823824
data = 0x00;
824825
}

0 commit comments

Comments
 (0)