Handle text blinking bit for cga/tandy mode control register
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1849
This commit is contained in:
parent
0c11281b19
commit
1de427249f
1 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue