1
0
Fork 0

added basic support for vidmode 0x7

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@984
This commit is contained in:
Peter Veenstra 2003-05-04 12:44:26 +00:00
parent 34c95efc05
commit b0906a8ed9
2 changed files with 5 additions and 3 deletions

View file

@ -101,7 +101,8 @@ void VGA_DrawGFX256U_Fast(Bit8u * bitdata,Bitu next_line) {
}
void VGA_DrawTEXT(Bit8u * bitdata,Bitu pitch) {
Bit8u * reader=HostMake(0xB800,0);
Bit8u * reader=HostMake((vga.gfx.miscellaneous & 0x4 ?0xB800:0xB000),0);
Bit8u * draw_start=bitdata;
/* Todo Blinking and high intensity colors */
for (Bitu cy=0;cy<(vga.draw.height/16);cy++) {