Browse Source

Fixes #2519, clear error if using the default library path for EGL succeeds.

Gabriel Jacobo 11 years ago
parent
commit
536dd01307
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/video/SDL_egl.c

+ 1 - 0
src/video/SDL_egl.c

@@ -201,6 +201,7 @@ SDL_EGL_LoadLibrary(_THIS, const char *egl_path, NativeDisplayType native_displa
         if (dll_handle == NULL) {
             return SDL_SetError("Could not load EGL library");
         }
+        SDL_ClearError();
     }
 
     _this->egl_data->dll_handle = dll_handle;