Correct tables for characters >127 in graphics mode
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@223
This commit is contained in:
parent
4f7748b8ee
commit
c10a532f88
1 changed files with 2 additions and 1 deletions
|
@ -271,7 +271,8 @@ INLINE static void WriteChar(Bit16u col,Bit16u row,Bit8u page,Bit8u chr,Bit8u at
|
|||
switch (curmode->cheight) {
|
||||
case 8:
|
||||
// fontdata=&int10_font_08[chr*8];
|
||||
fontdata=Real2Host(RealGetVec(0x43))+chr*8;
|
||||
if (chr<128) fontdata=Real2Host(RealGetVec(0x43))+chr*8;
|
||||
else fontdata=Real2Host(RealGetVec(0x1F))+(chr-128)*8;
|
||||
break;
|
||||
case 14:
|
||||
fontdata=&int10_font_14[chr*14];
|
||||
|
|
Loading…
Add table
Reference in a new issue