about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-01-12 18:43:14 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-01-12 18:43:14 +0100
commit20b388c1d2fd6a1cfb3973838345175410f9fa71 (patch)
tree74a3e5525be146a20f2a962abcf9ca7db5b57b91 /src
parent3ab7648384afdc0a8ebe893347286bee2ff2f850 (diff)
downloadbox64-20b388c1d2fd6a1cfb3973838345175410f9fa71.tar.gz
box64-20b388c1d2fd6a1cfb3973838345175410f9fa71.zip
[ARM64_DYNAREC] Re-enable Atomics, seems stable now
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index b4d0884d..5ec7f910 100644
--- a/src/main.c
+++ b/src/main.c
@@ -377,8 +377,8 @@ HWCAP2_ECV
     if(hwcap&HWCAP_AES)
         arm64_aes = 1;
     // ATOMIC use are disable for now. They crashes Batman Arkham Knight, bossibly other (also seems to make steamwebhelper unstable)
-    /*if(hwcap&HWCAP_ATOMICS)
-        arm64_atomics = 1;*/
+    if(hwcap&HWCAP_ATOMICS)
+        arm64_atomics = 1;
     #ifdef HWCAP_SHA1
     if(hwcap&HWCAP_SHA1)
         arm64_sha1 = 1;