Fixed pointer from integer warning and bug if compiled without EGL.
parent
b2faf3f08d
commit
87ad7a1c50
|
@ -604,8 +604,9 @@ WIN_GL_CreateContext(_THIS, SDL_Window * window)
|
||||||
|
|
||||||
return WIN_GLES_CreateContext(_this, window);
|
return WIN_GLES_CreateContext(_this, window);
|
||||||
#else
|
#else
|
||||||
return SDL_SetError("SDL not configured with EGL support");
|
SDL_SetError("SDL not configured with EGL support");
|
||||||
#endif
|
return NULL;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_this->gl_config.share_with_current_context) {
|
if (_this->gl_config.share_with_current_context) {
|
||||||
|
|
Loading…
Reference in New Issue