diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-16 16:14:37 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-16 16:14:37 +0100 |
| commit | 6f3d636226f2aef19362655e841236dc97bb1116 (patch) | |
| tree | c030fbe9cda962fbef6d9f85ad686690ba3715a5 /src/tools | |
| parent | f03792619a6137f7d72e370a9118061cae16bf10 (diff) | |
| download | box64-6f3d636226f2aef19362655e841236dc97bb1116.tar.gz box64-6f3d636226f2aef19362655e841236dc97bb1116.zip | |
[DYNAREC] Added BOX64_DYNAREC_WAIT env. var. (Default to 1)
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/rcfile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c index ebae7a68..ac6267ec 100644 --- a/src/tools/rcfile.c +++ b/src/tools/rcfile.c @@ -111,6 +111,7 @@ 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) \ ENTRYINT(BOX64_DYNAREC_HOTPAGE, box64_dynarec_hotpage, 0, 255, 8) \ +ENTRYBOOL(box64_dynarec_wait, box64_dynarec_wait) \ ENTRYSTRING_(BOX64_NODYNAREC, box64_nodynarec) \ #else @@ -127,6 +128,7 @@ IGNORE(BOX64_DYNAREC_SAFEFLAGS) \ IGNORE(BOX64_DYNAREC_CALLRET) \ IGNORE(BOX64_DYNAREC_BLEEDING_EDGE) \ IGNORE(BOX64_DYNAREC_HOTPAGE) \ +IGNORE(BOX64_DYNAREC_wait) \ IGNORE(BOX64_NODYNAREC) \ #endif |