about summary refs log tree commit diff stats
path: root/src/wrapped32/wrappedcrashhandler.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-08-30 10:13:42 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-08-30 10:13:42 +0200
commit371b45c4200b91de93250fbfa84b185350d7b323 (patch)
treed4881f4cefd96852fa0cb9e6d01631ae6d132b41 /src/wrapped32/wrappedcrashhandler.c
parent4dcf14d02661948eb3322f24cbba72a1bd944fc9 (diff)
downloadbox64-371b45c4200b91de93250fbfa84b185350d7b323.tar.gz
box64-371b45c4200b91de93250fbfa84b185350d7b323.zip
[BOX32] Added detection of steam and steamcmd
Diffstat (limited to 'src/wrapped32/wrappedcrashhandler.c')
-rwxr-xr-xsrc/wrapped32/wrappedcrashhandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped32/wrappedcrashhandler.c b/src/wrapped32/wrappedcrashhandler.c
index ed9b3b1e..2a205298 100755
--- a/src/wrapped32/wrappedcrashhandler.c
+++ b/src/wrapped32/wrappedcrashhandler.c
@@ -21,7 +21,7 @@ static const char* crashhandlerName = "crashhandler.so";
 #define LIBNAME crashhandler
 
 #define PRE_INIT                                                \
-    if(!box64_steam)                                            \
+    if(!(box64_steam || box64_steamcmd))                        \
         return -1;                                              \
     if(1)                                                       \
         lib->w.lib = dlopen(NULL, RTLD_LAZY | RTLD_GLOBAL);\