Remove RTLD_DEEPBIND flag from source2 titles

The issue this flag solved before seems to be resolved by the engine now and is not needed
This commit is contained in:
GAMMACASE 2025-08-08 15:26:23 +03:00
parent 5a282eb8fc
commit 2221689ce8

View File

@ -63,11 +63,7 @@
#include <sys/types.h>
#include <dirent.h>
typedef void* HINSTANCE;
#ifdef META_IS_SOURCE2
#define dlmount(x) dlopen(x,RTLD_NOW | RTLD_DEEPBIND)
#else
#define dlmount(x) dlopen(x,RTLD_NOW)
#endif
#define abspath(x, s) realpath(s, x)
#define PATH_SEP_STR "/"
#define PATH_SEP_CHAR '/'