diff options
author | Ted Jump <tjump@users.sourceforge.net> | 1999-10-20 06:56:40 +0000 |
---|---|---|
committer | Ted Jump <tjump@users.sourceforge.net> | 1999-10-20 06:56:40 +0000 |
commit | 3f17dfb8ba48d874814ce0e4a0b7d9e57feb4c36 (patch) | |
tree | 1b41492c6bb5c76d71517a87546596cdea521fd9 /src | |
parent | d53573daf7bb53a41c9307339d70cfbba4f3b7a5 (diff) |
Minor patches to cleanup some compiler warnings in MSVC
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/glide/fxwgl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/glide/fxwgl.c b/src/mesa/drivers/glide/fxwgl.c index 3ba7f7a4b4..7b19176c7e 100644 --- a/src/mesa/drivers/glide/fxwgl.c +++ b/src/mesa/drivers/glide/fxwgl.c @@ -28,14 +28,14 @@ extern "C" { #endif #include <windows.h> -#include <GL/gl.h> +#include "GL/gl.h" #ifdef __cplusplus } #endif #include <stdio.h> -#include <GL/fxmesa.h> +#include "GL/fxmesa.h" #include "fxdrv.h" #define MAX_MESA_ATTRS 20 @@ -542,7 +542,7 @@ BOOL GLAPIENTRY wglUseFontBitmaps(HDC fontDevice, DWORD firstChar, DWORD numChar SetTextColor(bitDevice, tempColor); // Place chars based on base line - VERIFY(SetTextAlign(bitDevice, TA_BASELINE) >= 0); + VERIFY(SetTextAlign(bitDevice, TA_BASELINE) >= 0 ? 1 : 0); for(i = 0; i < numChars; i++) { SIZE size; |