Skip to content

Commit

Permalink
Synced some small tweaks with the mainstream Mixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Aug 15, 2024
1 parent 9e789e9 commit dc3dca1
Show file tree
Hide file tree
Showing 16 changed files with 163 additions and 171 deletions.
4 changes: 2 additions & 2 deletions src/codecs/load_aiff.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ static Uint32 SANE_to_Uint32 (Uint8 *sanebuf)
SDL_AudioSpec *Mix_LoadAIFF_RW (SDL_RWops *src, int freesrc,
SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
{
int was_error;
int found_SSND;
int found_COMM;
int found_FVER;
int found_VHDR;
int found_BODY;
int was_error = 0;
Sint64 start = 0;

Uint32 chunk_type;
Expand Down Expand Up @@ -302,7 +302,7 @@ SDL_AudioSpec *Mix_LoadAIFF_RW (SDL_RWops *src, int freesrc,
if (was_error) {
spec = NULL;
}
return(spec);
return spec;
}

/* vi: set ts=4 sw=4 expandtab: */
Loading

0 comments on commit dc3dca1

Please sign in to comment.