From d24cc2796717357698152601ad77ea366f216595 Mon Sep 17 00:00:00 2001 From: Jess Haas Date: Wed, 24 Mar 1999 15:00:21 +0000 Subject: [PATCH] Fixed a small bug in int10. --- msdos/int10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msdos/int10.c b/msdos/int10.c index feff2a8eeec..e22bf36ec38 100644 --- a/msdos/int10.c +++ b/msdos/int10.c @@ -582,7 +582,7 @@ else { case 0x11: /* TEXT MODE CHARGEN */ /* Note that second subfunction is *almost* identical. */ /* See INTERRUPT.A for details. */ - switch AH_reg(context) { + switch AL_reg(context) { case 0x00: /* LOAD USER SPECIFIED PATTERNS */ case 0x10: FIXME(int10, "Load User Specified Patterns - Not Supported\n"); -- 2.11.4.GIT