From 086a786f12886256ba0e65db81d2a5549235b2b7 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 5 Feb 2018 20:32:49 +0100 Subject: [PATCH] The code in rom.c now also loads the MDSI Genius font. --- src/rom.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rom.c b/src/rom.c index a92af40c4..62ee88733 100644 --- a/src/rom.c +++ b/src/rom.c @@ -13,7 +13,7 @@ * - c386sx16 BIOS fails checksum * - the loadfont() calls should be done elsewhere * - * Version: @(#)rom.c 1.0.28 2018/01/28 + * Version: @(#)rom.c 1.0.29 2018/02/05 * * Authors: Sarah Walker, * Miran Grca, @@ -260,6 +260,7 @@ rom_load_bios(int rom_id) loadfont(L"roms/video/mda/mda.rom", 0); loadfont(L"roms/video/wyse700/wy700.rom", 3); + loadfont(L"roms/video/genius/8x12.bin", 4); /* If not done yet, allocate a 128KB buffer for the BIOS ROM. */ if (rom == NULL)