aboutsummaryrefslogtreecommitdiffstats
path: root/core/mixer/defs.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-03-07 21:25:38 -0800
committerChris Robinson <[email protected]>2023-03-07 21:25:38 -0800
commitc6c8a13220867f05c26bc388bc8bb917fece151a (patch)
treecaa363b4dd54c9b41850bc55a2c3f6441e0517b6 /core/mixer/defs.h
parenta1bd8875ae142ed6253ab60e9b662443a943ca03 (diff)
Make the resampler enum a byte
Diffstat (limited to 'core/mixer/defs.h')
-rw-r--r--core/mixer/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mixer/defs.h b/core/mixer/defs.h
index e02eb0b9..48daca9b 100644
--- a/core/mixer/defs.h
+++ b/core/mixer/defs.h
@@ -25,7 +25,7 @@ constexpr int MixerFracHalf{MixerFracOne >> 1};
constexpr float GainSilenceThreshold{0.00001f}; /* -100dB */
-enum class Resampler {
+enum class Resampler : uint8_t {
Point,
Linear,
Cubic,