From 20b388c1d2fd6a1cfb3973838345175410f9fa71 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Fri, 12 Jan 2024 18:43:14 +0100 Subject: [ARM64_DYNAREC] Re-enable Atomics, seems stable now --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit 1.4.1