summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/windows/gldirect/dglcontext.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/windows/gldirect/dglcontext.c')
-rw-r--r--src/mesa/drivers/windows/gldirect/dglcontext.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/windows/gldirect/dglcontext.c b/src/mesa/drivers/windows/gldirect/dglcontext.c
index c504be58ac..5dafe14518 100644
--- a/src/mesa/drivers/windows/gldirect/dglcontext.c
+++ b/src/mesa/drivers/windows/gldirect/dglcontext.c
@@ -37,7 +37,7 @@
#include "dglcontext.h"
// Get compile errors without this. KeithH
-#include "scitech.h" // ibool, etc.
+//#include "scitech.h" // ibool, etc.
#ifdef _USE_GLD3_WGL
#include "gld_driver.h"
@@ -517,12 +517,12 @@ LRESULT CALLBACK dglKeyProc(
HGLRC hGLRC = NULL;
DGL_ctx* lpCtx = NULL;
int cmd = 0, dx1 = 0, dx2 = 0, i;
- static ibool bAltPressed = false;
- static ibool bCtrlPressed = false;
- static ibool bShiftPressed = false;
+ static BOOL bAltPressed = FALSE;
+ static BOOL bCtrlPressed = FALSE;
+ static BOOL bShiftPressed = FALSE;
RECT r, rf, rc;
POINT pt;
- ibool bForceReshape = false;
+ BOOL bForceReshape = FALSE;
return CallNextHookEx(hKeyHook, code, wParam, lParam);
}