aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixer/defs.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-03 03:11:32 -0700
committerChris Robinson <[email protected]>2020-04-03 03:11:32 -0700
commitd9225083b4c7fe84d7a4bbde31801be4e51f6f61 (patch)
tree25e3e4546dd091add68ef2eb5e5d81adb536af08 /alc/mixer/defs.h
parent236564b54ace15b940ca5e97f44e2e7e0a8f4846 (diff)
Avoid using ALfloat in the mixer functions
Diffstat (limited to 'alc/mixer/defs.h')
-rw-r--r--alc/mixer/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/mixer/defs.h b/alc/mixer/defs.h
index a3b49ad3..a624509a 100644
--- a/alc/mixer/defs.h
+++ b/alc/mixer/defs.h
@@ -30,7 +30,7 @@ enum ResampleType {
};
template<ResampleType TypeTag, InstSetType InstTag>
-const ALfloat *Resample_(const InterpState *state, const ALfloat *RESTRICT src, ALuint frac,
+const float *Resample_(const InterpState *state, const float *RESTRICT src, ALuint frac,
ALuint increment, const al::span<float> dst);
template<InstSetType InstTag>