From d6a7c5d5a198d31fdfadb16f66c5e9c4e82cffca Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sun, 1 Jun 2025 20:34:47 -0400 Subject: [PATCH] Const void not void const --- src/sdl/mixer_sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c index df6cfbed2..835f584cd 100644 --- a/src/sdl/mixer_sound.c +++ b/src/sdl/mixer_sound.c @@ -279,7 +279,7 @@ get_real_sfx_volume (int vol) // this is as fast as I can possibly make it. // sorry. more asm needed. -static Mix_Chunk *ds2chunk(void const *stream) +static Mix_Chunk *ds2chunk(const void *stream) { UINT16 ver,freq; UINT32 samples, i, newsamples;