about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xdocs/USAGE.md4
-rwxr-xr-xsrc/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md
index 0bd7f327..32744566 100755
--- a/docs/USAGE.md
+++ b/docs/USAGE.md
@@ -184,8 +184,8 @@ Optimisation of CALL/RET opcodes (not compatible with jit/dynarec/smc)
 

 #### BOX64_DYNAREC_HOTPAGE *

 Handling of HotPage (Page being both executed and written)

-* 0 : Don't track hotpage

-* 1-255 : Track HotPage, and disable execution of a page being written for N attempts (default is 4)

+* 0 : Don't track hotpage (Default)

+* 1-255 : Track HotPage, and disable execution of a page being written for N attempts

 

 #### BOX64_DYNAREC_FASTPAGE *

 Will use a faster handling of HotPage (Page being both executed and written)

diff --git a/src/main.c b/src/main.c
index a8b0cff3..f4b7a239 100755
--- a/src/main.c
+++ b/src/main.c
@@ -58,7 +58,7 @@ int box64_dynarec_fastnan = 1;
 int box64_dynarec_fastround = 1;
 int box64_dynarec_safeflags = 1;
 int box64_dynarec_callret = 0;
-int box64_dynarec_hotpage = 4;
+int box64_dynarec_hotpage = 0;
 int box64_dynarec_fastpage = 0;
 int box64_dynarec_bleeding_edge = 1;
 int box64_dynarec_wait = 1;