diff options
author | Chris Robinson <[email protected]> | 2018-10-29 11:32:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-10-29 11:32:50 -0700 |
commit | 903d878460056737b66c188544d6dc18c7b6dc07 (patch) | |
tree | 5ecd6c9926db3bad9977a481d618fb30dcc31f94 /Alc/mastering.h | |
parent | 184241f2ef4935d3bf3e6df78991898bf339b92a (diff) |
Replace restrict with RESTRICT
Diffstat (limited to 'Alc/mastering.h')
-rw-r--r-- | Alc/mastering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mastering.h b/Alc/mastering.h index b68b0de1..17f5e8be 100644 --- a/Alc/mastering.h +++ b/Alc/mastering.h @@ -42,7 +42,7 @@ struct Compressor* CompressorInit(const ALsizei NumChans, const ALuint SampleRat const ALfloat AttackTime, const ALfloat ReleaseTime); void ApplyCompression(struct Compressor *Comp, const ALsizei SamplesToDo, - ALfloat (*restrict OutBuffer)[BUFFERSIZE]); + ALfloat (*RESTRICT OutBuffer)[BUFFERSIZE]); ALsizei GetCompressorLookAhead(const struct Compressor *Comp); |