1
0
Fork 0

use 8x14 fonts for ega text modes (350 line modes)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2998
This commit is contained in:
Sebastian Strohhäcker 2007-09-27 16:11:40 +00:00
parent 2d3e9c28e4
commit c1b3523d01
2 changed files with 33 additions and 9 deletions

View file

@ -888,7 +888,8 @@ Bitu keyboard_layout::read_codepage_file(const char* codepage_file_name, Bit32s
// update font if necessary
if (font_changed && (CurMode->type==M_TEXT) && (IS_EGAVGA_ARCH)) {
INT10_LoadFont(Real2Phys(int10.rom.font_16),true,256,0,0,16);
if (IS_VGA_ARCH) INT10_LoadFont(Real2Phys(int10.rom.font_16),true,256,0,0,16);
else INT10_LoadFont(Real2Phys(int10.rom.font_14),true,256,0,0,14);
}
INT10_SetupRomMemoryChecksum();