diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-11-29 09:48:30 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-11-29 09:48:30 +0100 |
| commit | 0e4d031054b7980edc806ae131ea8ce565632dbb (patch) | |
| tree | 3514ee3ffd8bbc617f2a2a94b085fe7ae8332668 /src | |
| parent | de15ee057ac217560d8db24343a9f4648fd30899 (diff) | |
| download | box64-0e4d031054b7980edc806ae131ea8ce565632dbb.tar.gz box64-0e4d031054b7980edc806ae131ea8ce565632dbb.zip | |
Use dummy crashhandler lib by default
Diffstat (limited to 'src')
| -rwxr-xr-x | src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index 121540a7..6cc2e6d4 100755 --- a/src/main.c +++ b/src/main.c @@ -84,7 +84,7 @@ int allow_missing_libs = 0; int box64_prefer_emulated = 0; int box64_prefer_wrapped = 0; int fix_64bit_inodes = 0; -int box64_dummy_crashhandler = 0; +int box64_dummy_crashhandler = 1; int box64_mapclean = 0; int box64_zoom = 0; int box64_steam = 0; @@ -593,8 +593,8 @@ void LoadLogEnv() if(p[0]>='0' && p[0]<='0'+1) box64_dummy_crashhandler = p[0]-'0'; } - if(box64_dummy_crashhandler) - printf_log(LOG_INFO, "Use of dummy crashhandler lib\n"); + if(!box64_dummy_crashhandler) + printf_log(LOG_INFO, "Don't use dummy crashhandler lib\n"); } p = getenv("BOX64_NOPULSE"); if(p) { @@ -793,7 +793,7 @@ void PrintHelp() { printf(" BOX64_ALLOWMISSINGLIBS with 1 to allow to continue even if a lib is missing (unadvised, will probably crash later)\n"); printf(" BOX64_PREFER_EMULATED=1 to prefer emulated libs first (execpt for glibc, alsa, pulse, GL, vulkan and X11\n"); printf(" BOX64_PREFER_WRAPPED if box64 will use wrapped libs even if the lib is specified with absolute path\n"); - printf(" BOX64_CRASHHANDLER=1 to use a dummy crashhandler lib (default for steam\n"); + printf(" BOX64_CRASHHANDLER=0 to not use a dummy crashhandler lib\n"); printf(" BOX64_NOPULSE=1 to disable the loading of pulseaudio libs\n"); printf(" BOX64_NOGTK=1 to disable the loading of wrapped gtk libs\n"); printf(" BOX64_NOVULKAN=1 to disable the loading of wrapped vulkan libs\n"); |