diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-12-31 15:27:28 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-12-31 15:27:28 +0100 |
| commit | 6e1c0c135386e26deb7c530d938c0ff1d015087a (patch) | |
| tree | e651a7ae7e75f20b8ad1ea4352390485b37ca5b4 /src | |
| parent | ffe2cd020309d8318cee54a3868ef91a5303e049 (diff) | |
| download | box64-6e1c0c135386e26deb7c530d938c0ff1d015087a.tar.gz box64-6e1c0c135386e26deb7c530d938c0ff1d015087a.zip | |
Cleaned up some special case detection from box86 that are 32bits only
Diffstat (limited to 'src')
| -rwxr-xr-x | src/main.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main.c b/src/main.c index cc48eb14..14b1d3b5 100755 --- a/src/main.c +++ b/src/main.c @@ -916,11 +916,6 @@ int main(int argc, const char **argv, const char **env) { prgname = prog; else ++prgname; - // special case for LittleInferno that use an old libvorbis - if(strstr(prgname, "LittleInferno.bin.x86")==prgname) { - printf_log(LOG_INFO, "LittleInferno detected, forcing emulated libvorbis\n"); - AddPath("libvorbis.so.0", &my_context->box64_emulated_libs, 0); - } // special case for dontstarve that use an old SDL2 if(strstr(prgname, "dontstarve")) { printf_log(LOG_INFO, "Dontstarve* detected, forcing emulated SDL2\n"); @@ -942,11 +937,6 @@ int main(int argc, const char **argv, const char **env) { printf_log(LOG_INFO, "steamwebhelper, ignoring for now!\n"); exit(0); // exiting } - // special case for UnrealLinux.bin, it doesn't like "full path resolution" - if(!strcmp(prog, "UnrealLinux.bin") && my_context->argv[0]) { - free(my_context->argv[0]); - my_context->argv[0] = strdup("./UnrealLinux.bin"); - } // special case for zoom if(strstr(prgname, "zoom")==prgname) { printf_log(LOG_INFO, "Zoom detected, trying to use system libturbojpeg if possible\n"); |