os2: better error reporting from loadso
parent
861ac81b37
commit
d1323eb0a9
|
@ -44,7 +44,7 @@ SDL_LoadObject(const char *sofile)
|
||||||
SDL_free( pszModName );
|
SDL_free( pszModName );
|
||||||
if ( ulRC != NO_ERROR )
|
if ( ulRC != NO_ERROR )
|
||||||
{
|
{
|
||||||
SDL_SetError( "Failed loading, module: %s", pszModName );
|
SDL_SetError( "Failed loading %s (E%u)", acError, ulRC );
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,9 +58,9 @@ SDL_LoadFunction(void *handle, const char *name)
|
||||||
PFN pFN;
|
PFN pFN;
|
||||||
|
|
||||||
ulRC = DosQueryProcAddr( (HMODULE)handle, 0, name, &pFN );
|
ulRC = DosQueryProcAddr( (HMODULE)handle, 0, name, &pFN );
|
||||||
if ( ulRC )
|
if ( ulRC != NO_ERROR )
|
||||||
{
|
{
|
||||||
SDL_SetError( "Failed loading, procedure: %s", name );
|
SDL_SetError( "Failed loading procedure %s (E%u)", name, ulRC );
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue