Fix a typo

This commit is contained in:
Vincent Lejeune 2014-01-29 01:32:41 +01:00
parent e9d995504d
commit c994ed720d
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ PFNGLDEBUGMESSAGECALLBACKARBPROC glDebugMessageCallbackARB;
static bool is_gl_init = false;
//#define ARB_DEBUG_OUTPUT
#define ARB_DEBUG_OUTPUT
#ifdef ARB_DEBUG_OUTPUT
static
void debugCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length,

View File

@ -107,7 +107,7 @@ isObjectPass(video::E_MATERIAL_TYPE type)
return true;
if (type == video::EMT_ONETEXTURE_BLEND)
return true;
if (type == video::EMT_ONETEXTURE_BLEND)
if (type == video::EMT_TRANSPARENT_ADD_COLOR)
return true;
return false;
}