sdl2-compat: fix signature of SDL_CreateAudioStream after recent SDL3 changes

From 6b1cefeffcb2a13a02a4d3166ec094d2ed12781c Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 28 Apr 2023 11:55:40 +0300
Subject: [PATCH] fix signature of SDL_CreateAudioStream after recent SDL3
 changes

---
 src/sdl3_syms.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sdl3_syms.h b/src/sdl3_syms.h
index daf0151..4ad30fd 100644
--- a/src/sdl3_syms.h
+++ b/src/sdl3_syms.h
@@ -598,7 +598,7 @@ SDL3_SYM_PASSTHROUGH(SDL_bool,Vulkan_CreateSurface,(SDL_Window *a, VkInstance b,
 SDL3_SYM_PASSTHROUGH(void,GetMemoryFunctions,(SDL_malloc_func *a, SDL_calloc_func *b, SDL_realloc_func *c, SDL_free_func *d),(a,b,c,d),)
 SDL3_SYM_PASSTHROUGH(int,SetMemoryFunctions,(SDL_malloc_func a, SDL_calloc_func b, SDL_realloc_func c, SDL_free_func d),(a,b,c,d),return)
 SDL3_SYM_PASSTHROUGH(int,GetNumAllocations,(void),(),return)
-SDL3_SYM(SDL_AudioStream*,CreateAudioStream,(const SDL_AudioFormat a, const Uint8 b, const int c, const SDL_AudioFormat d, const Uint8 e, const int f),(a,b,c,d,e,f),return)
+SDL3_SYM(SDL_AudioStream*,CreateAudioStream,(SDL_AudioFormat a, int b, int c, SDL_AudioFormat d, int e, int f),(a,b,c,d,e,f),return)
 SDL3_SYM(int,PutAudioStreamData,(SDL_AudioStream *a, const void *b, int c),(a,b,c),return)
 SDL3_SYM(int,GetAudioStreamData,(SDL_AudioStream *a, void *b, int c),(a,b,c),return)
 SDL3_SYM(int,ClearAudioStream,(SDL_AudioStream *a),(a),return)