diff options
author | Chris Robinson <[email protected]> | 2019-08-13 22:25:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-13 22:25:59 -0700 |
commit | 351ccf2e11cfc429eeb76f7812565d0ed27043d5 (patch) | |
tree | b3ff80b389c5ba41bed0d61031ff3b0c028c4759 /alc/alcontext.h | |
parent | ecab99bce914c6c74351fb2d5878dd82d73b1fe2 (diff) |
Use new/delete for context and effectslot properties
Diffstat (limited to 'alc/alcontext.h')
-rw-r--r-- | alc/alcontext.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alc/alcontext.h b/alc/alcontext.h index f30a4bd0..c91d0a21 100644 --- a/alc/alcontext.h +++ b/alc/alcontext.h @@ -50,6 +50,8 @@ struct ALcontextProps { DistanceModel mDistanceModel; std::atomic<ALcontextProps*> next; + + DEF_NEWDEL(ALcontextProps) }; |