aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeroen Janssen <japj@xs4all.nl>2002-03-14 16:54:22 +0000
committerJeroen Janssen <japj@xs4all.nl>2002-03-14 16:54:22 +0000
commitb0fd8a07ea4873ca54c3edc599ba65d1bf937753 (patch)
tree18afab0d6cf833de039fbccb7b5fb6bbb0cca077
parent293fbe9c067389a42aafd0159b70c332520d88a1 (diff)
downloadvgabios-b0fd8a07ea4873ca54c3edc599ba65d1bf937753.tar.gz
- vbetables.h is dependant upon some defines (VBE_HAVE_LFB), so put the include *after* the define
-rw-r--r--vbe.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/vbe.c b/vbe.c
index b6c8140..7e77d44 100644
--- a/vbe.c
+++ b/vbe.c
@@ -28,11 +28,8 @@
//
// ============================================================================================
-#include "vbe.h"
-#include "vbetables.h"
// defines available
-
// enable LFB support (depends upon bochs-vbe-lfb patch)
//#define VBE_HAVE_LFB
@@ -45,6 +42,11 @@
// enable unsupported modi in the mode_info list (ie >8bpp)
//#define LIST_UNSUPPORTED_MODI
+
+#include "vbe.h"
+#include "vbetables.h"
+
+
// The current OEM Software Revision of this VBE Bios
#define VBE_OEM_SOFTWARE_REV 0x0002;