about summary refs log tree commit diff stats
path: root/docs/gen/usage.json
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-06-20 12:10:36 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-06-20 12:10:36 +0200
commitdcb47b7df841ed82048aeac8ae079342119402c9 (patch)
tree034c12f9857958bedb5c1f1993c511a6abdf434b /docs/gen/usage.json
parentd6c08a7511ac3ca27c719d91e58ab8b9e5f6a688 (diff)
downloadbox64-dcb47b7df841ed82048aeac8ae079342119402c9.tar.gz
box64-dcb47b7df841ed82048aeac8ae079342119402c9.zip
[DYNACACHE] Introduced B64X_DYNACACHE=2 to use cache but not create new ones, and made it default
Diffstat (limited to 'docs/gen/usage.json')
-rw-r--r--docs/gen/usage.json9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/gen/usage.json b/docs/gen/usage.json
index 2d77737f..3e748a20 100644
--- a/docs/gen/usage.json
+++ b/docs/gen/usage.json
@@ -803,19 +803,24 @@
   },
   {
     "name": "BOX64_DYNACACHE",
-    "description": "Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 0. Not all architecture support DynaCache yet (it will have no effect then). DynaCache write file to home folder, and can grow without limit",
+    "description": "Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 2 (to read cache if present but not generate any). Not all architecture support DynaCache yet (it will have no effect then). DynaCache write file to home folder, and can grow without limit",
     "category": "Performance",
     "wine": false,
     "options": [
       {
         "key": "0",
         "description": "Disable DynaCache.",
-        "default": true
+        "default": false
       },
       {
         "key": "1",
         "description": "Enable DynaCache.",
         "default": false
+      },
+      {
+        "key": "2",
+        "description": "Use DynaCache files if present, but do not generate new one.",
+        "default": true
       }
     ]
   },