Commit 63a21208 authored by Patrice Mandin's avatar Patrice Mandin

Rollback

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401242
parent 107e0fbf
...@@ -134,21 +134,11 @@ int SDL_AtariGL_LoadLibrary(_THIS, const char *path) ...@@ -134,21 +134,11 @@ int SDL_AtariGL_LoadLibrary(_THIS, const char *path)
return -1; return -1;
} }
/* Driver already loaded ? */ /* Unload previous driver */
if (this->gl_config.driver_loaded) { SDL_AtariGL_UnloadLibrary(this);
/* Default path ? don't change anything */
if (path==NULL) {
return 0;
}
/* Unload previous driver */
SDL_AtariGL_UnloadLibrary(this);
}
/* Load library given by path */ /* Load library given by path */
handle = NULL handle = SDL_LoadObject(path);
if (path != NULL) {
handle = SDL_LoadObject(path);
}
if (handle == NULL) { if (handle == NULL) {
/* Try to load another one */ /* Try to load another one */
path = getenv("SDL_VIDEO_GL_DRIVER"); path = getenv("SDL_VIDEO_GL_DRIVER");
...@@ -408,7 +398,6 @@ static void SDL_AtariGL_UnloadLibrary(_THIS) ...@@ -408,7 +398,6 @@ static void SDL_AtariGL_UnloadLibrary(_THIS)
if (this->gl_config.dll_handle) { if (this->gl_config.dll_handle) {
SDL_UnloadObject(this->gl_config.dll_handle); SDL_UnloadObject(this->gl_config.dll_handle);
this->gl_config.dll_handle = NULL; this->gl_config.dll_handle = NULL;
this->gl_config.driver_loaded = 0;
/* Restore pointers to static library */ /* Restore pointers to static library */
SDL_AtariGL_InitPointers(this); SDL_AtariGL_InitPointers(this);
......
...@@ -468,7 +468,6 @@ int GEM_VideoInit(_THIS, SDL_PixelFormat *vformat) ...@@ -468,7 +468,6 @@ int GEM_VideoInit(_THIS, SDL_PixelFormat *vformat)
#ifdef HAVE_OPENGL #ifdef HAVE_OPENGL
SDL_AtariGL_InitPointers(this); SDL_AtariGL_InitPointers(this);
SDL_AtariGL_LoadLibrary(this, NULL);
#endif #endif
/* We're done! */ /* We're done! */
......
...@@ -464,7 +464,6 @@ static int XBIOS_VideoInit(_THIS, SDL_PixelFormat *vformat) ...@@ -464,7 +464,6 @@ static int XBIOS_VideoInit(_THIS, SDL_PixelFormat *vformat)
#ifdef HAVE_OPENGL #ifdef HAVE_OPENGL
SDL_AtariGL_InitPointers(this); SDL_AtariGL_InitPointers(this);
SDL_AtariGL_LoadLibrary(this, NULL);
#endif #endif
/* We're done! */ /* We're done! */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment