diff options
author | Chris Robinson <[email protected]> | 2023-05-05 13:37:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-05 13:50:16 -0700 |
commit | bfe766cd574985465fe1a9f4cffa388ca9ca1f9b (patch) | |
tree | 7752588dfa87ae2616fd84437697f4458d4d5293 /al/event.cpp | |
parent | 09b153b85c9f6c75a6361ab2ecb0ed81e8920ff3 (diff) |
Use some more standard functions
Diffstat (limited to 'al/event.cpp')
-rw-r--r-- | al/event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/event.cpp b/al/event.cpp index acb4958a..33e28412 100644 --- a/al/event.cpp +++ b/al/event.cpp @@ -50,7 +50,7 @@ static int EventThread(ALCcontext *context) evt_data.len -= 1; AsyncEvent evt{*evt_ptr}; - al::destroy_at(evt_ptr); + std::destroy_at(evt_ptr); ring->readAdvance(1); quitnow = evt.EnumType == AsyncEvent::KillThread; |