platform ps2, fixes for gcc14

This commit is contained in:
kub 2024-05-20 10:07:42 +02:00
parent c055f15cd5
commit 257baf1520
5 changed files with 11 additions and 8 deletions

View file

@ -131,7 +131,7 @@ void mp3_start_play(void *f_, int pos1024)
void mp3_update(s32 *buffer, int length, int stereo)
{
int length_mp3;
void (*mix_samples)(int *dest_buf, short *mp3_buf, int count, int fac16) = mix_16h_to_32_resample_stereo;
void (*mix_samples)(s32 *dest_buf, short *mp3_buf, int count, int fac16) = mix_16h_to_32_resample_stereo;
if (mp3_current_file == NULL || mp3_file_pos >= mp3_file_len)
return; /* no file / EOF */