From 9fde260df9237cd99967a816332be31ce1524770 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 20 Dec 2018 12:29:46 -0800 Subject: Fix the type used for another subtraction --- Alc/mastering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/mastering.cpp') diff --git a/Alc/mastering.cpp b/Alc/mastering.cpp index fa2c9dac..91ea207b 100644 --- a/Alc/mastering.cpp +++ b/Alc/mastering.cpp @@ -86,7 +86,7 @@ static void ShiftSlidingHold(SlidingHold *Hold, const ALsizei n) std::bind(std::minus{}, _1, n)); exp_begin = std::begin(Hold->Expiries); } - std::transform(exp_begin, exp_last+1, exp_begin, std::bind(std::minus{}, _1, n)); + std::transform(exp_begin, exp_last+1, exp_begin, std::bind(std::minus{}, _1, n)); } /* Multichannel compression is linked via the absolute maximum of all -- cgit v1.2.3