diff options
author | Chris Robinson <[email protected]> | 2020-05-21 09:10:32 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-05-21 09:10:32 -0700 |
commit | 5bbbe8341ee54e8bfeb3817d332a8413c8c7eb81 (patch) | |
tree | edb8ec4665deca2ab5f0a2b621c64f392ecbc33a /al/source.h | |
parent | e880c04f321ec3244ac4987c9c7a865ccbda5a80 (diff) |
Use an enum class for SpatializeMode
Diffstat (limited to 'al/source.h')
-rw-r--r-- | al/source.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/source.h b/al/source.h index a36a2a09..8417688a 100644 --- a/al/source.h +++ b/al/source.h @@ -56,7 +56,7 @@ struct ALsource { DistanceModel mDistanceModel{DistanceModel::Default}; Resampler mResampler{ResamplerDefault}; DirectMode DirectChannels{DirectMode::Off}; - SpatializeMode mSpatialize{SpatializeAuto}; + SpatializeMode mSpatialize{SpatializeMode::Auto}; bool DryGainHFAuto{true}; bool WetGainAuto{true}; |