sdl2-compat: We don't need to hack around SDL_ReportAssertion in the headers.

From 2e07c09d75c625120e4b0e49f8069ba4c9136226 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Tue, 29 Nov 2022 14:16:49 -0500
Subject: [PATCH] We don't need to hack around SDL_ReportAssertion in the
 headers.

It's part of SDL2, so we can just call that directly.
---
 src/sdl2_compat.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/sdl2_compat.c b/src/sdl2_compat.c
index 0f2f0a3..9e47cbb 100644
--- a/src/sdl2_compat.c
+++ b/src/sdl2_compat.c
@@ -116,7 +116,6 @@ extern "C" {
 #define SDL3_InvalidParamError(param) SDL3_SetError("Parameter '%s' is invalid", (param))
 #define SDL3_zero(x) SDL3_memset(&(x), 0, sizeof((x)))
 #define SDL3_zerop(x) SDL3_memset((x), 0, sizeof(*(x)))
-#define SDL_ReportAssertion SDL3_ReportAssertion
 
 
 static SDL_bool WantDebugLogging = SDL_FALSE;