aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alcontext.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-10-21 16:39:21 -0700
committerChris Robinson <[email protected]>2020-10-21 16:39:21 -0700
commit3e62600ecc3c2f1be4da0d3e8166f5c67cc25fed (patch)
treea33bb31c8c8d53f96a2112c7f8edb91a190df5e6 /alc/alcontext.h
parentb8f5e1f4247e8a1d1ebdbe39dad6b235d6d50daa (diff)
Replace some more macros with constexpr variables
Diffstat (limited to 'alc/alcontext.h')
-rw-r--r--alc/alcontext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alcontext.h b/alc/alcontext.h
index 73a6617e..59775849 100644
--- a/alc/alcontext.h
+++ b/alc/alcontext.h
@@ -114,7 +114,7 @@ struct ALCcontext : public al::intrusive_ref<ALCcontext> {
float mDopplerFactor{1.0f};
float mDopplerVelocity{1.0f};
- float mSpeedOfSound{SPEEDOFSOUNDMETRESPERSEC};
+ float mSpeedOfSound{SpeedOfSoundMetersPerSec};
std::atomic_flag mPropsClean;
std::atomic<bool> mDeferUpdates{false};