mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-22 15:45:09 +00:00
Removed space between sizeof and parentheses
This commit is contained in:
parent
e9f9cb29fc
commit
76e9d64b36
|
@ -196,7 +196,7 @@ static Sint32 ResamplerPadding(const Sint32 inrate, const Sint32 outrate)
|
|||
return RESAMPLER_SAMPLES_PER_ZERO_CROSSING;
|
||||
}
|
||||
|
||||
/* lpadding and rpadding are expected to be buffers of (ResamplePadding(inrate, outrate) * chans * sizeof (float)) bytes. */
|
||||
/* lpadding and rpadding are expected to be buffers of (ResamplePadding(inrate, outrate) * chans * sizeof(float)) bytes. */
|
||||
static int SDL_ResampleAudio(const int chans, const int inrate, const int outrate,
|
||||
const float *lpadding, const float *rpadding,
|
||||
const float *inbuf, const int inbuflen,
|
||||
|
|
Loading…
Reference in a new issue