From: notaz <notasas@gmail.com>
Date: Tue, 20 May 2025 23:54:37 +0000 (+0300)
Subject: spu: ssat is ARMv6, not v7
X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fdb6c4eb0f8a046f295b954a543ed3f857ab475;p=pcsx_rearmed.git

spu: ssat is ARMv6, not v7
---

diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index 0954be5d..c14f6469 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -33,7 +33,7 @@
 #include "arm_features.h"
 #endif
 
-#ifdef HAVE_ARMV7
+#ifdef HAVE_ARMV6
  #define ssat32_to_16(v) \
   asm("ssat %0,#16,%1" : "=r" (v) : "r" (v))
 #else