mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
os2: better error reporting from loadso
This commit is contained in:
parent
861ac81b37
commit
d1323eb0a9
@ -44,7 +44,7 @@ SDL_LoadObject(const char *sofile)
|
||||
SDL_free( pszModName );
|
||||
if ( ulRC != NO_ERROR )
|
||||
{
|
||||
SDL_SetError( "Failed loading, module: %s", pszModName );
|
||||
SDL_SetError( "Failed loading %s (E%u)", acError, ulRC );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -58,9 +58,9 @@ SDL_LoadFunction(void *handle, const char *name)
|
||||
PFN 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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user