sdl12-compat: fix FORCEALIGNATTR copy/paste mistake

From 2379757f8b24b3b4d08c08f5cdb56a5643757ddd Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 4 Sep 2022 17:39:00 +0300
Subject: [PATCH] fix FORCEALIGNATTR copy/paste mistake

TODO: force_align_arg_pointer attribute requires gcc >= 4.2: adjust so.
---
 src/SDL12_compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
index fe83a30f..a8237469 100644
--- a/src/SDL12_compat.c
+++ b/src/SDL12_compat.c
@@ -87,7 +87,7 @@ extern "C" {
 #if defined(__linux__) && defined(__i386__) && (defined(__GNUC__) || defined(__clang__))
 #define FORCEALIGNATTR __attribute__((force_align_arg_pointer))
 #else
-#define FORCEALIGNATTR __attribute__((force_align_arg_pointer))
+#define FORCEALIGNATTR
 #endif
 
 #define DECLSPEC12 DECLSPEC FORCEALIGNATTR