about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-10-19 19:10:50 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-10-19 19:10:50 +0200
commitb95f0a0ffa37ce558921de3bcb5104091d60dd33 (patch)
tree5758a222d0deb457b111c6a8497b9fe6a0bd11dc
parent0833a07a65da8e786041666a815f2df87dccaa7e (diff)
downloadbox64-b95f0a0ffa37ce558921de3bcb5104091d60dd33.tar.gz
box64-b95f0a0ffa37ce558921de3bcb5104091d60dd33.zip
[DYNAREC][WOWBOX64] BOX4_DYNAREC_INTERP_SIGNAL is not availble in WowBox64 for now
-rw-r--r--docs/USAGE.md2
-rw-r--r--docs/box64.pod2
-rw-r--r--docs/gen/usage.json2
-rw-r--r--src/include/env.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md
index 01653007..4efd7b71 100644
--- a/docs/USAGE.md
+++ b/docs/USAGE.md
@@ -331,7 +331,7 @@ Force the use of float/double for x87 emulation. Availble in WowBox64.
 
 ### BOX64_DYNAREC_INTERP_SIGNAL
 
-Allow the use of Dynarec in Signal Handlers. Availble in WowBox64.
+Allow the use of Dynarec in Signal Handlers.
 
  * 0: Allow the use of Dynarec in signal handlers. [Default]
  * 1: Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier). 
diff --git a/docs/box64.pod b/docs/box64.pod
index 06cdc8e2..42ce1ee5 100644
--- a/docs/box64.pod
+++ b/docs/box64.pod
@@ -401,7 +401,7 @@ Force the use of float/double for x87 emulation. Availble in WowBox64.
 
 =item B<BOX64_DYNAREC_INTERP_SIGNAL> =I<0|1>
 
-Allow the use of Dynarec in Signal Handlers. Availble in WowBox64.
+Allow the use of Dynarec in Signal Handlers.
 
  * 0 : Allow the use of Dynarec in signal handlers. [Default]
  * 1 : Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier). 
diff --git a/docs/gen/usage.json b/docs/gen/usage.json
index 91e465cc..dfd65aea 100644
--- a/docs/gen/usage.json
+++ b/docs/gen/usage.json
@@ -851,7 +851,7 @@
     "name": "BOX64_DYNAREC_INTERP_SIGNAL",
     "description": "Allow the use of Dynarec in Signal Handlers.",
     "category": "Compatibility",
-    "wine": true,
+    "wine": false,
     "options": [
       {
         "key": "0",
diff --git a/src/include/env.h b/src/include/env.h
index 546fc7fe..ac3be9a4 100644
--- a/src/include/env.h
+++ b/src/include/env.h
@@ -70,7 +70,7 @@ extern char* ftrace_name;
     BOOLEAN(BOX64_DYNAREC_WAIT, dynarec_wait, 1, 1)                           \
     INTEGER(BOX64_DYNAREC_WEAKBARRIER, dynarec_weakbarrier, 1, 0, 2, 1)       \
     INTEGER(BOX64_DYNAREC_X87DOUBLE, dynarec_x87double, 0, 0, 2, 1)           \
-    BOOLEAN(BOX64_DYNAREC_INTERP_SIGNAL, dynarec_interp_signal, 0, 1)         \
+    BOOLEAN(BOX64_DYNAREC_INTERP_SIGNAL, dynarec_interp_signal, 0, 0)         \
     STRING(BOX64_EMULATED_LIBS, emulated_libs, 0)                             \
     STRING(BOX64_ENV, env, 0)                                                 \
     STRING(BOX64_ENV1, env1, 0)                                               \