Skip to content

Commit

Permalink
Fixed coding style on a function signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 8, 2017
1 parent 53588ff commit 98cc9d1
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/audio/SDL_audiocvt.c
Expand Up @@ -823,12 +823,13 @@ SDL_CleanupAudioStreamResampler(SDL_AudioStream *stream)
SDL_free(stream->resampler_state);
}

SDL_AudioStream *SDL_NewAudioStream(const SDL_AudioFormat src_format,
const Uint8 src_channels,
const int src_rate,
const SDL_AudioFormat dst_format,
const Uint8 dst_channels,
const int dst_rate)
SDL_AudioStream *
SDL_NewAudioStream(const SDL_AudioFormat src_format,
const Uint8 src_channels,
const int src_rate,
const SDL_AudioFormat dst_format,
const Uint8 dst_channels,
const int dst_rate)
{
const int packetlen = 4096; /* !!! FIXME: good enough for now. */
Uint8 pre_resample_channels;
Expand Down

0 comments on commit 98cc9d1

Please sign in to comment.