diff --git a/jni/love/src/modules/graphics/opengl/Graphics.cpp b/jni/love/src/modules/graphics/opengl/Graphics.cpp index 22f049aa..b19935fe 100644 --- a/jni/love/src/modules/graphics/opengl/Graphics.cpp +++ b/jni/love/src/modules/graphics/opengl/Graphics.cpp @@ -238,7 +238,8 @@ bool Graphics::setMode(int width, int height) enabledebug = (flags & GL_CONTEXT_FLAG_DEBUG_BIT) != 0; } - setDebug(enabledebug); + if (!GLAD_ES_VERSION_2_0) + setDebug(enabledebug); return true; }