about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-08-09 18:17:16 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-08-09 18:17:16 +0200
commit8893344b7659d64add6c6d3d39b382a962c34de2 (patch)
tree1ec3f89c12b6acd54bddcfeb3d9c5c03beff98d7 /src
parentf0ea65dc36a708143a26807b091cb8b63a7e5232 (diff)
downloadbox64-8893344b7659d64add6c6d3d39b382a962c34de2.tar.gz
box64-8893344b7659d64add6c6d3d39b382a962c34de2.zip
Fix non-Dynarec build
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 1068edbd..aca52b47 100644
--- a/src/core.c
+++ b/src/core.c
@@ -67,6 +67,7 @@ int box64_ignoreint3 = 0;
 int box64_rdtsc = 0;
 int box64_rdtsc_1ghz = 0;
 uint8_t box64_rdtsc_shift = 0;
+char* box64_new_args = NULL;
 #ifdef DYNAREC
 int box64_dynarec = 1;
 int box64_dynarec_dump = 0;
@@ -85,7 +86,6 @@ int box64_dynarec_tbb = 1;
 int box64_dynarec_wait = 1;
 int box64_dynarec_missing = 0;
 int box64_dynarec_aligned_atomics = 0;
-char* box64_new_args = NULL;
 uintptr_t box64_nodynarec_start = 0;
 uintptr_t box64_nodynarec_end = 0;
 uintptr_t box64_dynarec_test_start = 0;