WinRT: merged with SDL 2.0.0 codebase (aka. SDL hg rev d6a8fa507a45)

This commit is contained in:
David Ludwig
2013-08-12 22:29:55 -04:00
768 changed files with 31941 additions and 111045 deletions

View File

@@ -33,7 +33,7 @@
void *
SDL_LoadObject(const char *sofile)
{
void *handle = dlopen(sofile, RTLD_NOW);
void *handle = dlopen(sofile, RTLD_NOW|RTLD_LOCAL);
const char *loaderror = (char *) dlerror();
if (handle == NULL) {
SDL_SetError("Failed loading %s: %s", sofile, loaderror);