diff options
| -rwxr-xr-x | docs/USAGE.md | 2 | ||||
| -rwxr-xr-x | src/main.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index cb11e7aa..873bef2a 100755 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -194,7 +194,7 @@ Box64 will prefer emulated libs first (execpt for glibc, alsa, pulse, GL, vulkan #### BOX64_CRASHHANDLER * Box64 will use a dummy crashhandler.so library * 0 : Use Emulated crashhandler.so library if needed - * 1 : Use an internal dummy (completly empty) crashhandler.so library (defaut for steam and dota2) + * 1 : Use an internal dummy (completly empty) crashhandler.so library (defaut) #### BOX64_NOPULSE * Disables the load of pulseaudio libraries. 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"); |