From 74b1c5e43b0954fefedff5df018111e3ff8cae07 Mon Sep 17 00:00:00 2001 From: Caspian Rychlik-Prince Date: Wed, 14 Aug 2002 01:30:48 +0000 Subject: [PATCH] Fixed a few things --- src/native/common/checkGLerror.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/native/common/checkGLerror.h b/src/native/common/checkGLerror.h index 19b4e24e..4a0b04ac 100644 --- a/src/native/common/checkGLerror.h +++ b/src/native/common/checkGLerror.h @@ -7,15 +7,15 @@ Error checking for OpenGL bindings */ -#ifndef _CHECKERROR_H_INCLUDED_ -#define _CHECKERROR_H_INCLUDED_ +#ifndef _CHECKGLERROR_H_INCLUDED_ +#define _CHECKGLERROR_H_INCLUDED_ #ifdef _DEBUG #include #include -#define CHECK_ERROR \ +#define CHECK_GL_ERROR \ { \ int err = glGetError(); \ if (err != GL_NO_ERROR) { \ @@ -27,8 +27,8 @@ #else -#define CHECK_ERROR +#define CHECK_GL_ERROR #endif /* _DEBUG */ -#endif /* _CHECKERROR_H_INCLUDED_ */ \ No newline at end of file +#endif /* _CHECKGLERROR_H_INCLUDED_ */ \ No newline at end of file