diff --git a/src/shaders.c b/src/shaders.c index 97f9db0..9036975 100644 --- a/src/shaders.c +++ b/src/shaders.c @@ -66,7 +66,7 @@ static bool check_eglerror_ro(const char *context) { code = eglGetError(); - if (code > 0 && code != EGL_SUCCESS) { + if (code != EGL_SUCCESS) { log_warn("EGL Error: %04x (%s)", code, context); return true; }