diff --git a/src/platforms/rcore_comma.c b/src/platforms/rcore_comma.c index 02be5e875..fa99307a9 100644 --- a/src/platforms/rcore_comma.c +++ b/src/platforms/rcore_comma.c @@ -289,10 +289,9 @@ static int init_egl () { return -1; } - EGLBoolean ok = eglSwapInterval(platform.egl.display, FLAG_VSYNC_HINT ? 1 : 0); + EGLBoolean ok = eglSwapInterval(platform.egl.display, FLAG_VSYNC_HINT ? 10 : 0); if (ok == EGL_FALSE) { - TRACELOG(LOG_WARNING, "eglSwapInterval() failed: 0x%04x", eglGetError()); -// TRACELOG(LOG_WARNING, "COMMA: eglSwapInterval failed. Error code: %s", eglGetErrorString(eglGetError())); + TRACELOG(LOG_WARNING, "COMMA: eglSwapInterval failed. Error code: %s", eglGetErrorString(eglGetError())); return -1; }