sdl2-compat: assert: Deal with legacy struct names being removed in SDL3.

From 46dfc0b686396a60cd01941cf8253b9122064799 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sun, 11 Dec 2022 23:18:37 -0500
Subject: [PATCH] assert: Deal with legacy struct names being removed in SDL3.

---
 src/dynapi/SDL_dynapi_procs.h | 4 ++--
 src/sdl3_syms.h               | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/dynapi/SDL_dynapi_procs.h b/src/dynapi/SDL_dynapi_procs.h
index 7b9842a..57ca32f 100644
--- a/src/dynapi/SDL_dynapi_procs.h
+++ b/src/dynapi/SDL_dynapi_procs.h
@@ -90,9 +90,9 @@ SDL_DYNAPI_PROC(int,SDL_InitSubSystem,(Uint32 a),(a),return)
 SDL_DYNAPI_PROC(void,SDL_QuitSubSystem,(Uint32 a),(a),)
 SDL_DYNAPI_PROC(Uint32,SDL_WasInit,(Uint32 a),(a),return)
 SDL_DYNAPI_PROC(void,SDL_Quit,(void),(),)
-SDL_DYNAPI_PROC(SDL_assert_state,SDL_ReportAssertion,(SDL_assert_data *a, const char *b, const char *c, int d),(a,b,c,d),return)
+SDL_DYNAPI_PROC(SDL_AssertState,SDL_ReportAssertion,(SDL_AssertData *a, const char *b, const char *c, int d),(a,b,c,d),return)
 SDL_DYNAPI_PROC(void,SDL_SetAssertionHandler,(SDL_AssertionHandler a, void *b),(a,b),)
-SDL_DYNAPI_PROC(const SDL_assert_data*,SDL_GetAssertionReport,(void),(),return)
+SDL_DYNAPI_PROC(const SDL_AssertData*,SDL_GetAssertionReport,(void),(),return)
 SDL_DYNAPI_PROC(void,SDL_ResetAssertionReport,(void),(),)
 SDL_DYNAPI_PROC(SDL_bool,SDL_AtomicTryLock,(SDL_SpinLock *a),(a),return)
 SDL_DYNAPI_PROC(void,SDL_AtomicLock,(SDL_SpinLock *a),(a),)
diff --git a/src/sdl3_syms.h b/src/sdl3_syms.h
index 631d87c..7e903cc 100644
--- a/src/sdl3_syms.h
+++ b/src/sdl3_syms.h
@@ -79,9 +79,9 @@ SDL3_SYM_PASSTHROUGH(int,InitSubSystem,(Uint32 a),(a),return)
 SDL3_SYM_PASSTHROUGH(void,QuitSubSystem,(Uint32 a),(a),)
 SDL3_SYM_PASSTHROUGH(Uint32,WasInit,(Uint32 a),(a),return)
 SDL3_SYM_PASSTHROUGH(void,Quit,(void),(),)
-SDL3_SYM_PASSTHROUGH(SDL_assert_state,ReportAssertion,(SDL_assert_data *a, const char *b, const char *c, int d),(a,b,c,d),return)
+SDL3_SYM_PASSTHROUGH(SDL_AssertState,ReportAssertion,(SDL_AssertData *a, const char *b, const char *c, int d),(a,b,c,d),return)
 SDL3_SYM_PASSTHROUGH(void,SetAssertionHandler,(SDL_AssertionHandler a, void *b),(a,b),)
-SDL3_SYM_PASSTHROUGH(const SDL_assert_data*,GetAssertionReport,(void),(),return)
+SDL3_SYM_PASSTHROUGH(const SDL_AssertData*,GetAssertionReport,(void),(),return)
 SDL3_SYM_PASSTHROUGH(void,ResetAssertionReport,(void),(),)
 SDL3_SYM_PASSTHROUGH(SDL_bool,AtomicTryLock,(SDL_SpinLock *a),(a),return)
 SDL3_SYM_PASSTHROUGH(void,AtomicLock,(SDL_SpinLock *a),(a),)