Fixes Bug #2191,incorrect test for egl_context validity

Thanks David Binderman!
main
Gabriel Jacobo 2013-10-31 10:02:21 -03:00
parent 804e5799ad
commit e651ab12b6
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ SDL_EGL_DeleteContext(_THIS, SDL_GLContext context)
return;
}
if (!egl_context && egl_context != EGL_NO_CONTEXT) {
if (egl_context != NULL && egl_context != EGL_NO_CONTEXT) {
SDL_EGL_MakeCurrent(_this, NULL, NULL);
_this->egl_data->eglDestroyContext(_this->egl_data->egl_display, egl_context);
}