about summary refs log tree commit diff stats
path: root/src/librarian
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-12-01 17:50:29 +0100
committerptitSeb <sebastien.chev@gmail.com>2022-12-01 17:50:29 +0100
commit9f3ea84b574321fd59fa6c2670f5e6a0f88fc774 (patch)
treebc052d9c9c60d0ff3f507f8a11c1bf0919d4e3fa /src/librarian
parent3f007d2dbb2b0319d9c2ff4ef6dff10d77a9b6ab (diff)
downloadbox64-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-xsrc/librarian/library.c2
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;