1
0
Fork 0

fixed the treh demo and some other.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1140
This commit is contained in:
Peter Veenstra 2003-07-21 16:56:40 +00:00
parent 5d93540ca0
commit 027ce473e7

View file

@ -309,7 +309,7 @@ static void WriteChar(Bit16u col,Bit16u row,Bit8u page,Bit8u chr,Bit8u attr,bool
//TODO Check for out of bounds
for (Bit8u h=0;h<CurMode->cheight;h++) {
Bit8u bitsel=128;
Bit8u bitline=mem_readb(fontdata);
Bit8u bitline=mem_readb(fontdata++); //added ++ for at least the CGA modes.
Bit16u tx=x;
while (bitsel) {
if (bitline&bitsel) INT10_PutPixel(tx,y,page,attr);