Commit e5a7ecb6 authored by hybrid's avatar hybrid

Fix syntax error in Linux extension code.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3658 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 1f5b75b0
......@@ -624,9 +624,9 @@ void COpenGLExtensionHandler::initExtensions(bool stencilBuffer)
// blend equation
pGlBlendEquationEXT = (PFNGLBLENDEQUATIONEXTPROC)
IRR_OGL_LOAD_EXTENSION(reinterpret_cast<const GLubyte*>("glBlendEquationEXT");
IRR_OGL_LOAD_EXTENSION(reinterpret_cast<const GLubyte*>("glBlendEquationEXT"));
pGlBlendEquation = (PFNGLBLENDEQUATIONPROC)
IRR_OGL_LOAD_EXTENSION(reinterpret_cast<const GLubyte*>("glBlendEquation");
IRR_OGL_LOAD_EXTENSION(reinterpret_cast<const GLubyte*>("glBlendEquation"));
#endif // _IRR_OPENGL_USE_EXTPOINTER_
#endif // _IRR_WINDOWS_API_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment