diff options
| author | ptitSeb <seebastien.chev@gmail.com> | 2023-10-22 11:35:24 +0200 |
|---|---|---|
| committer | ptitSeb <seebastien.chev@gmail.com> | 2023-10-22 11:35:24 +0200 |
| commit | 59b51cccfc19ced50c19c7e6bf578cb3dd9fd3f5 (patch) | |
| tree | dfbfbe3f966d29198d9765c9d56c042e47f0cb33 /src/main.c | |
| parent | a83091bc3b9e84a9471aeadfef40b501b0399988 (diff) | |
| download | box64-59b51cccfc19ced50c19c7e6bf578cb3dd9fd3f5.tar.gz box64-59b51cccfc19ced50c19c7e6bf578cb3dd9fd3f5.zip | |
[ARM64] More unaligned improvments
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 346556aa..bc4a12e4 100644 --- a/src/main.c +++ b/src/main.c @@ -507,8 +507,8 @@ void LoadLogEnv() #ifdef DYNAREC #ifdef ARM64 // unaligned atomic (with restriction) is supported in hardware - if(arm64_uscat) - box64_dynarec_aligned_atomics = 1; + /*if(arm64_uscat) + box64_dynarec_aligned_atomics = 1;*/ // the unaligned support is not good enough for x86 emulation, so diabling #endif p = getenv("BOX64_DYNAREC_DUMP"); if(p) { |