mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-05 22:09:59 +03:00
build: arm target support
This commit is contained in:
@@ -216,12 +216,13 @@ static void WaitForDebuggerConnect( int argc, char *argv[], int time )
|
||||
int main( int argc, char *argv[] )
|
||||
{
|
||||
void *launcher = dlopen( "bin/liblauncher" DLL_EXT_STRING, RTLD_NOW );
|
||||
fprintf( stderr, "%s\nFailed to load the launcher\n", dlerror() );
|
||||
if( !launcher )
|
||||
void *launcher = dlopen( "bin/launcher" DLL_EXT_STRING, RTLD_NOW );
|
||||
launcher = dlopen( "bin/launcher" DLL_EXT_STRING, RTLD_NOW );
|
||||
|
||||
if ( !launcher )
|
||||
{
|
||||
fprintf( stderr, "Failed to load the launcher\n" );
|
||||
fprintf( stderr, "%s\nFailed to load the launcher\n", dlerror() );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user