From 1782208fde4352e4e40a3f3ec9102fb136e1f5e1 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 23 May 2018 05:58:06 -0700 Subject: [PATCH] Remove unused function --- Alc/ALu.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Alc/ALu.c b/Alc/ALu.c index 3c36cbc6..acd5de06 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -145,16 +145,6 @@ static inline HrtfDirectMixerFunc SelectHrtfMixer(void) } -/* Prior to VS2013, MSVC lacks the round() family of functions. */ -#if defined(_MSC_VER) && _MSC_VER < 1800 -static float roundf(float val) -{ - if(val < 0.0f) - return ceilf(val-0.5f); - return floorf(val+0.5f); -} -#endif - /* This RNG method was created based on the math found in opusdec. It's quick, * and starting with a seed value of 22222, is suitable for generating * whitenoise. -- 2.11.4.GIT