diff options
author | Chris Robinson <[email protected]> | 2023-05-06 12:08:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-06 12:08:15 -0700 |
commit | 92046ee22ff8a80a1a5b463165a840078fad8caa (patch) | |
tree | cbd53b33eb1f45289dd4eff71718ae34c00630f5 /alc/alu.h | |
parent | 7c7b80ee49b4d8279c88e024039b8ff39ee14950 (diff) |
Use more appropriate types for some enums
Diffstat (limited to 'alc/alu.h')
-rw-r--r-- | alc/alu.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,12 +3,13 @@ #include <bitset> #include <optional> +#include <stdint.h> struct ALCcontext; struct ALCdevice; struct EffectSlot; -enum class StereoEncoding : unsigned char; +enum class StereoEncoding : uint8_t; constexpr float GainMixMax{1000.0f}; /* +60dB */ |