engine: platform: android: fix compile

This commit is contained in:
Alibek Omarov 2021-12-27 03:19:50 +03:00
parent 7869aac2e5
commit ebfa8e6ffc

View File

@ -51,7 +51,7 @@ void *ANDROID_LoadLibrary( const char *dllname )
}
else
{
Q_snprintf( path, MAX_SYSPATH, "lib%s"POSTFIX"."OS_LIB_EXT, dllname );
Q_snprintf( path, MAX_SYSPATH, "lib%s."OS_LIB_EXT, dllname );
pHandle = dlopen( path, RTLD_LAZY );
if( pHandle )
return pHandle;