aboutsummaryrefslogtreecommitdiffstats
path: root/alc/voice.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-10-02 17:07:23 -0700
committerChris Robinson <[email protected]>2019-10-02 17:07:23 -0700
commit50198ee30c86f566f538e2ffd763caaaba1c45d4 (patch)
treed5738736e4e40278eb2e065301c603979d002939 /alc/voice.h
parent64e2c377d865d67efdac675c355e7b1a6b4166e6 (diff)
Clean up some ALfloat -> float
Diffstat (limited to 'alc/voice.h')
-rw-r--r--alc/voice.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/voice.h b/alc/voice.h
index c4bea635..de77834e 100644
--- a/alc/voice.h
+++ b/alc/voice.h
@@ -134,7 +134,7 @@ struct ALvoicePropsBase {
bool DryGainHFAuto;
bool WetGainAuto;
bool WetGainHFAuto;
- float OuterGainHF;
+ float OuterGainHF;
float AirAbsorptionFactor;
float RoomRolloffFactor;
@@ -232,9 +232,9 @@ struct ALvoice {
std::array<SendData,MAX_SENDS> mSend;
struct ChannelData {
- alignas(16) std::array<ALfloat,MAX_RESAMPLER_PADDING> mPrevSamples;
+ alignas(16) std::array<float,MAX_RESAMPLER_PADDING> mPrevSamples;
- ALfloat mAmbiScale;
+ float mAmbiScale;
BandSplitter mAmbiSplitter;
DirectParams mDryParams;