mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-07 08:08:04 -04:00
platform ps2, fixes for gcc14
This commit is contained in:
parent
c055f15cd5
commit
257baf1520
5 changed files with 11 additions and 8 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue