diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-12-01 17:50:29 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-12-01 17:50:29 +0100 |
| commit | 9f3ea84b574321fd59fa6c2670f5e6a0f88fc774 (patch) | |
| tree | bc052d9c9c60d0ff3f507f8a11c1bf0919d4e3fa /src/librarian | |
| parent | 3f007d2dbb2b0319d9c2ff4ef6dff10d77a9b6ab (diff) | |
| download | box64-9f3ea84b574321fd59fa6c2670f5e6a0f88fc774.tar.gz box64-9f3ea84b574321fd59fa6c2670f5e6a0f88fc774.zip | |
[DYNAREC] Added BOX64_DYNAREC_BLEEDING_EDGE to control detection of MonoBleedingEdge (and disable that for 3dSen)
Diffstat (limited to 'src/librarian')
| -rwxr-xr-x | src/librarian/library.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librarian/library.c b/src/librarian/library.c index e58cd1d0..f5561674 100755 --- a/src/librarian/library.c +++ b/src/librarian/library.c @@ -301,7 +301,7 @@ static int loadEmulatedLib(const char* libname, library_t *lib, box64context_t* printf_log(LOG_INFO, "Using emulated %s\n", libname); #ifdef DYNAREC - if(libname && strstr(libname, "libmonobdwgc-2.0.so")) { + if(libname && box64_dynarec_bleeding_edge && strstr(libname, "libmonobdwgc-2.0.so")) { printf_log(LOG_INFO, "MonoBleedingEdge detected, disable Dynarec BigBlock and enable Dynarec StrongMem\n"); box64_dynarec_bigblock = 0; box64_dynarec_strongmem = 1; |