common: cleanup port.h

This commit is contained in:
Alibek Omarov
2021-12-23 19:17:11 +03:00
parent fb8791529e
commit 4f89288ccf
25 changed files with 55 additions and 103 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ void *ANDROID_LoadLibrary( const char *dllname )
if( !libdir[i] )
continue;
Q_snprintf( path, MAX_SYSPATH, "%s/lib%s"POSTFIX"."OS_LIB_EXT, libdir[i], dllname );
Q_snprintf( path, MAX_SYSPATH, "%s/lib%s."OS_LIB_EXT, libdir[i], dllname );
pHandle = dlopen( path, RTLD_LAZY );
if( pHandle )
return pHandle;