From d430711b08dea6bd2551c337cdfe1f6a75485b6b Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 23 Dec 2016 07:17:52 +0100 Subject: [PATCH] Fixed a compile-breaking mistake in vid_vga.c. --- src/vid_vga.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vid_vga.c b/src/vid_vga.c index 67458e126..3ad87e4bc 100644 --- a/src/vid_vga.c +++ b/src/vid_vga.c @@ -120,9 +120,9 @@ void *trigem_unk_init() io_sethandler(0x03c0, 0x0020, vga_in, NULL, NULL, vga_out, NULL, NULL, vga); - io_sethandler(0x22ca, 0x0002, svga_in, NULL, NULL, svga_out, NULL, NULL, svga); - io_sethandler(0x22ce, 0x0002, svga_in, NULL, NULL, svga_out, NULL, NULL, svga); - io_sethandler(0x32ca, 0x0002, svga_in, NULL, NULL, svga_out, NULL, NULL, svga); + io_sethandler(0x22ca, 0x0002, svga_in, NULL, NULL, vga_out, NULL, NULL, vga); + io_sethandler(0x22ce, 0x0002, svga_in, NULL, NULL, vga_out, NULL, NULL, vga); + io_sethandler(0x32ca, 0x0002, svga_in, NULL, NULL, vga_out, NULL, NULL, vga); vga->svga.bpp = 8; vga->svga.miscout = 1;