scripts: ios: enable decay build in buildallmods.sh

This commit is contained in:
ksagameng
2026-03-19 22:36:51 +05:00
committed by a1batross
parent 93cb146f39
commit 11c7c1b77d
3 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -62,7 +62,8 @@ void *IOS_LoadLibrary( const char *dllname )
else postfix = "";
}
Q_strncpy( strippedname, dllname, strlen(dllname) - EXT_LENGTH );
Q_strncpy( strippedname, dllname, sizeof( strippedname ) );
COM_StripExtension(strippedname);
Q_snprintf( name, MAX_STRING, "%s_%s.dylib", strippedname, postfix );
pHandle = IOS_LoadLibraryInternal( name );