aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-12-17 04:14:39 -0800
committerChris Robinson <[email protected]>2021-12-17 04:14:39 -0800
commit3ed913f6dde4340325079a9c6d14e69c9731e11a (patch)
treebe143b84beab0ec813201d1dad075524acb05b14 /al
parentc9537abfb1a9d1c94d6bf9aa0e6cfa2cda1ae94b (diff)
Remove an unnecessary parameter
Diffstat (limited to 'al')
-rw-r--r--al/source.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/source.cpp b/al/source.cpp
index cf95f7a4..1bf0552a 100644
--- a/al/source.cpp
+++ b/al/source.cpp
@@ -521,7 +521,7 @@ VoiceChange *GetVoiceChanger(ALCcontext *ctx)
VoiceChange *vchg{ctx->mVoiceChangeTail};
if UNLIKELY(vchg == ctx->mCurrentVoiceChange.load(std::memory_order_acquire))
{
- ctx->allocVoiceChanges(1);
+ ctx->allocVoiceChanges();
vchg = ctx->mVoiceChangeTail;
}