aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mastering.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-10-02 12:25:26 -0700
committerChris Robinson <[email protected]>2018-10-02 12:25:26 -0700
commit493c8bbc833a4b5f58c82913af913946926b194f (patch)
tree0b5eff84c6cc8717da2e3f9770ab37d47212900a /Alc/mastering.c
parent052fdd67cdcb7bdade54c20b4595fc390b4d86b1 (diff)
Add back an inadvertently removed static
Diffstat (limited to 'Alc/mastering.c')
-rw-r--r--Alc/mastering.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mastering.c b/Alc/mastering.c
index e1bc4ae7..52ff5b23 100644
--- a/Alc/mastering.c
+++ b/Alc/mastering.c
@@ -79,7 +79,7 @@ typedef struct Compressor {
*
* http://www.richardhartersworld.com/cri/2001/slidingmin.html
*/
-ALfloat UpdateSlidingHold(SlidingHold *Hold, const ALsizei i, const ALfloat in)
+static ALfloat UpdateSlidingHold(SlidingHold *Hold, const ALsizei i, const ALfloat in)
{
const ALsizei mask = BUFFERSIZE - 1;
const ALsizei length = Hold->Length;