From 1de427249f3d073fb0181367ee3f26e781e7f24d Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 20 Jun 2004 17:02:59 +0000 Subject: [PATCH] Handle text blinking bit for cga/tandy mode control register Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1849 --- src/hardware/vga_other.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hardware/vga_other.cpp b/src/hardware/vga_other.cpp index f5425645..f50cc949 100644 --- a/src/hardware/vga_other.cpp +++ b/src/hardware/vga_other.cpp @@ -209,6 +209,7 @@ static void write_cga(Bitu port,Bitu val,Bitu iolen) { } else { VGA_SetMode(M_TANDY_TEXT); } + VGA_SetBlinking(val & 0x20); break; case 0x3d9: write_color_select(val); @@ -220,6 +221,7 @@ static void write_tandy(Bitu port,Bitu val,Bitu iolen) { switch (port) { case 0x3d8: vga.tandy.mode_control=val; + VGA_SetBlinking(val & 0x20); TANDY_FindMode(); break; case 0x3d9: