diff options
author | Chris Robinson <[email protected]> | 2022-07-15 06:14:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-15 06:14:25 -0700 |
commit | 0f4679981b575cc76158126dec7d9bdda3ba1c29 (patch) | |
tree | 77e9176befdeb963e7dd791fc50df3db34f789bc /al/auxeffectslot.h | |
parent | 0b9fc03545f7418be89bb9a8901b342ce84a5f67 (diff) |
Allocate EffectSlots in clusters
Diffstat (limited to 'al/auxeffectslot.h')
-rw-r--r-- | al/auxeffectslot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.h b/al/auxeffectslot.h index 8b80a2d4..b8b41174 100644 --- a/al/auxeffectslot.h +++ b/al/auxeffectslot.h @@ -68,7 +68,7 @@ struct ALeffectslot { /* Self ID */ ALuint id{}; - ALeffectslot(); + ALeffectslot(ALCcontext *context); ALeffectslot(const ALeffectslot&) = delete; ALeffectslot& operator=(const ALeffectslot&) = delete; ~ALeffectslot(); |