From 2221689ce8928ce2332d4b0414fc3f9939b70e66 Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Fri, 8 Aug 2025 15:26:23 +0300 Subject: [PATCH] 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 --- core/metamod_oslink.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/metamod_oslink.h b/core/metamod_oslink.h index 4c827fc..46395d5 100644 --- a/core/metamod_oslink.h +++ b/core/metamod_oslink.h @@ -63,11 +63,7 @@ #include #include 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 '/'