Browse Source

Fixed compile error.

Branimir Karadžić 11 years ago
parent
commit
dfdd644fdb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/renderer_gl.h

+ 2 - 2
src/renderer_gl.h

@@ -347,11 +347,11 @@ namespace bgfx
 					BX_UNUSED(err); \
 				} while (0)
 
-#define IGNORE(...) do {} while(0)
+#define IGNORE_GL_ERROR_CHECK(...) do {} while(0)
 
 #if BGFX_CONFIG_DEBUG
 #	define GL_CHECK(_call)   _GL_CHECK(BX_CHECK, _call)
-#	define GL_CHECK_I(_call) _GL_CHECK(IGNORE, _call)
+#	define GL_CHECK_I(_call) _GL_CHECK(IGNORE_GL_ERROR_CHECK, _call)
 #else
 #	define GL_CHECK(_call)   _call
 #	define GL_CHECK_I(_call) _call