2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 18:07:09 +01:00

game_launch: fix start up

This commit is contained in:
Alibek Omarov 2019-11-02 08:55:30 +03:00
parent dfed24c290
commit a46e459124

View File

@ -92,11 +92,8 @@ static void Sys_LoadEngine( void )
Xash_Error("Unable to load the " XASHLIB ": %s", dlerror() ); Xash_Error("Unable to load the " XASHLIB ": %s", dlerror() );
} }
if(( Xash_Main = (pfnInit)GetProcAddress( hEngine, "Platform_Main" )) == NULL ) if(( Xash_Main = (pfnInit)GetProcAddress( hEngine, "Platform_Main" )) == NULL &&
{ ( Xash_Main = (pfnInit)GetProcAddress( hEngine, "Host_Main" )) == NULL )
// silently ignore absence of platform-specific init
}
else if(( Xash_Main = (pfnInit)GetProcAddress( hEngine, "Host_Main" )) == NULL )
{ {
Xash_Error( XASHLIB " missed 'Host_Main' export: %s", dlerror() ); Xash_Error( XASHLIB " missed 'Host_Main' export: %s", dlerror() );
} }