aboutsummaryrefslogtreecommitdiff
path: root/util/x86emu/x86_interrupts.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/x86emu/x86_interrupts.c')
-rw-r--r--util/x86emu/x86_interrupts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/x86emu/x86_interrupts.c b/util/x86emu/x86_interrupts.c
index 1582ef1ec1..556e81043a 100644
--- a/util/x86emu/x86_interrupts.c
+++ b/util/x86emu/x86_interrupts.c
@@ -206,6 +206,7 @@ int int15_handler(struct eregs *regs)
regs->eax = 0x860f;
break;
/* And now Intel IGD code */
+#define BOOT_DISPLAY_DEFAULT 0
#define BOOT_DISPLAY_CRT (1 << 0)
#define BOOT_DISPLAY_TV (1 << 1)
#define BOOT_DISPLAY_EFP (1 << 2)
@@ -217,7 +218,7 @@ int int15_handler(struct eregs *regs)
case 0x5f35:
regs->eax = 0x5f;
- regs->ecx = BOOT_DISPLAY_LCD|BOOT_DISPLAY_CRT;
+ regs->ecx = BOOT_DISPLAY_DEFAULT;
res = 0;
break;
case 0x5f40: