From c3316e3536baf4881fb9bb0252677c9f996bf7f4 Mon Sep 17 00:00:00 2001
From: jsalmon3 <>
Date: Sun, 1 Dec 2002 20:38:16 +0000
Subject: [PATCH] Fixed compile error with USE_OPENGL and vc++

---
 src/ui/menu_proc.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/ui/menu_proc.cpp b/src/ui/menu_proc.cpp
index 76cec692d..12adbc2c3 100644
--- a/src/ui/menu_proc.cpp
+++ b/src/ui/menu_proc.cpp
@@ -34,7 +34,12 @@
 
 #include "freecraft.h"
 
+#if defined(USE_OPENGL) && defined(_MSC_VER)
+#undef NOUSER
 #include "video.h"
+#else
+#include "video.h"
+#endif
 #include "font.h"
 #include "interface.h"
 #include "menus.h"