about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-05-31 18:21:42 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-05-31 18:21:42 +0200
commitc5e8aaff4a73665ad9ee0231713a7b6068bf2547 (patch)
tree580fbdb15a94a17f469f1e85b4850ff32c3e8851 /src/tools
parent2017ef192f49715783e0108d8d0ac4b826b0ac45 (diff)
downloadbox64-c5e8aaff4a73665ad9ee0231713a7b6068bf2547.tar.gz
box64-c5e8aaff4a73665ad9ee0231713a7b6068bf2547.zip
[DYNAREC] Addeddetection of libjvm (and an option to disable it) to apply conservative settings when loaded (should help #813) and probably other java based games/apps)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rcfile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c
index e0aae458..7e13f60f 100644
--- a/src/tools/rcfile.c
+++ b/src/tools/rcfile.c
@@ -126,6 +126,7 @@ ENTRYBOOL(BOX64_DYNAREC_FASTROUND, box64_dynarec_fastround)         \
 ENTRYINT(BOX64_DYNAREC_SAFEFLAGS, box64_dynarec_safeflags, 0, 2, 2) \
 ENTRYBOOL(BOX64_DYNAREC_CALLRET, box64_dynarec_callret)             \
 ENTRYBOOL(BOX64_DYNAREC_BLEEDING_EDGE, box64_dynarec_bleeding_edge) \
+ENTRYBOOL(BOX64_DYNAREC_JVM, box64_dynarec_jvm)                     \
 ENTRYINT(BOX64_DYNAREC_HOTPAGE, box64_dynarec_hotpage, 0, 255, 8)   \
 ENTRYBOOL(BOX64_DYNAREC_FASTPAGE, box64_dynarec_fastpage)           \
 ENTRYBOOL(BOX64_DYNAREC_WAIT, box64_dynarec_wait)                   \
@@ -147,6 +148,7 @@ IGNORE(BOX64_DYNAREC_FASTROUND)                                     \
 IGNORE(BOX64_DYNAREC_SAFEFLAGS)                                     \
 IGNORE(BOX64_DYNAREC_CALLRET)                                       \
 IGNORE(BOX64_DYNAREC_BLEEDING_EDGE)                                 \
+IGNORE(BOX64_DYNAREC_JVM)                                           \
 IGNORE(BOX64_DYNAREC_HOTPAGE)                                       \
 IGNORE(BOX64_DYNAREC_FASTPAGE)                                      \
 IGNORE(BOX64_DYNAREC_WAIT)                                          \