diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 10:13:42 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 10:13:42 +0200 |
| commit | 371b45c4200b91de93250fbfa84b185350d7b323 (patch) | |
| tree | d4881f4cefd96852fa0cb9e6d01631ae6d132b41 /src/wrapped32 | |
| parent | 4dcf14d02661948eb3322f24cbba72a1bd944fc9 (diff) | |
| download | box64-371b45c4200b91de93250fbfa84b185350d7b323.tar.gz box64-371b45c4200b91de93250fbfa84b185350d7b323.zip | |
[BOX32] Added detection of steam and steamcmd
Diffstat (limited to 'src/wrapped32')
| -rwxr-xr-x | src/wrapped32/wrappedcrashhandler.c | 2 |
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);\ |