Commit 26eb6c8e authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Check the correct debug class in checkGLcall.

parent 46215689
......@@ -816,7 +816,7 @@ extern int num_lock DECLSPEC_HIDDEN;
#define checkGLcall(A) \
do { \
GLint err; \
if(!__WINE_IS_DEBUG_ON(_FIXME, __wine_dbch___default)) break; \
if (!__WINE_IS_DEBUG_ON(_ERR, __wine_dbch___default)) break; \
err = glGetError(); \
if (err == GL_NO_ERROR) { \
TRACE("%s call ok %s / %d\n", A, __FILE__, __LINE__); \
......
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