From 1277d085f083dc2dfd93e87eeae344ca8e70b1c3 Mon Sep 17 00:00:00 2001 From: Yan Sweitzer Date: Sun, 14 May 2000 01:41:22 +0000 Subject: [PATCH] added a pragma disable warning (win32) --- include/glquake.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/glquake.h b/include/glquake.h index 1935195..38a6cfb 100644 --- a/include/glquake.h +++ b/include/glquake.h @@ -23,6 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #pragma warning(disable : 4244) // MIPS #pragma warning(disable : 4136) // X86 #pragma warning(disable : 4051) // ALPHA +#pragma warning(disable : 4305) // thousands of double to float truncation warnings #include #endif @@ -40,7 +41,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. void GL_BeginRendering (int *x, int *y, int *width, int *height); void GL_EndRendering (void); - // Function prototypes for the Texture Object Extension routines typedef GLboolean (GLAPIENTRY *ARETEXRESFUNCPTR)(GLsizei, const GLuint *,const GLboolean *); typedef void (GLAPIENTRY *BINDTEXFUNCPTR)(GLenum, GLuint);