From 08efa5086cd0cfd0ce565ea648b500bd933a1786 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Fri, 17 Jun 2022 21:32:01 +0200 Subject: [PATCH] Forgot the relevant xga_enabled activation variables, fixed compile. --- src/86box.c | 1 + src/include/86box/86box.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index 34cd3891c..148eb63f8 100644 --- a/src/86box.c +++ b/src/86box.c @@ -172,6 +172,7 @@ int GUS = 0; /* (C) sound option */ int SSI2001 = 0; /* (C) sound option */ int voodoo_enabled = 0; /* (C) video option */ int ibm8514_enabled = 0; /* (C) video option */ +int xga_enabled = 0; /* (C) video option */ uint32_t mem_size = 0; /* (C) memory size (Installed on system board)*/ uint32_t isa_mem_size = 0; /* (C) memory size (ISA Memory Cards) */ int cpu_use_dynarec = 0; /* (C) cpu uses/needs Dyna */ diff --git a/src/include/86box/86box.h b/src/include/86box/86box.h index 61269fddb..c4ddaed4b 100644 --- a/src/include/86box/86box.h +++ b/src/include/86box/86box.h @@ -112,7 +112,8 @@ extern int sound_is_float, /* (C) sound uses FP values */ GUS, GUSMAX, /* (C) sound option */ SSI2001, /* (C) sound option */ voodoo_enabled, /* (C) video option */ - ibm8514_enabled; /* (C) video option */ + ibm8514_enabled, /* (C) video option */ + xga_enabled; /* (C) video option */ extern uint32_t mem_size; /* (C) memory size (Installed on system board) */ extern uint32_t isa_mem_size; /* (C) memory size (ISA Memory Cards) */ extern int cpu, /* (C) cpu type */