From 9fdb6c4eb0f8a046f295b954a543ed3f857ab475 Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 21 May 2025 02:54:37 +0300 Subject: [PATCH] spu: ssat is ARMv6, not v7 --- plugins/dfsound/spu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5