Evas GL: Fix logic in debug check

This commit is contained in:
Jean-Philippe Andre 2015-03-05 17:20:57 +09:00
parent 8f57cbcdd6
commit 8cf1dda9df
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void _make_current_check(const char* api)
if (!ctx)
CRI("\e[1;33m%s\e[m: Current Context NOT SET: GL Call Should NOT Be Called without MakeCurrent!!!", api);
else if ((ctx->version != EVAS_GL_GLES_2_X) || (ctx->version != EVAS_GL_GLES_3_X))
else if ((ctx->version != EVAS_GL_GLES_2_X) && (ctx->version != EVAS_GL_GLES_3_X))
CRI("\e[1;33m%s\e[m: This API is being called with the wrong context (invalid version).", api);
}