os2: better error reporting from loadso

Ozkan Sezer 2020-10-14 23:01:01 +03:00
parent 861ac81b37
commit d1323eb0a9
1 changed files with 3 additions and 3 deletions

View File

@ -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;
} }