[GLFW stub] another fix (rm static const)

This commit is contained in:
Duy Tran Khanh 2021-01-21 19:36:26 +07:00 committed by GitHub
parent fef5651468
commit 2c4b55baf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,7 +166,7 @@ JNIEXPORT jboolean JNICALL Java_org_lwjgl_glfw_GLFW_nativeEglInit(JNIEnv* env, j
return JNI_FALSE;
}
static const EGLint attribs[] = {
EGLint attribs[] = {
EGL_RED_SIZE, eglHints.redBits,
EGL_GREEN_SIZE, eglHints.greenBits,
EGL_BLUE_SIZE, eglHints.blueBits,