diff options
author | Chris Robinson <[email protected]> | 2018-11-29 22:49:01 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-29 22:49:01 -0800 |
commit | 8ca8da30bd587cefcd86e3a2b9401821af65e502 (patch) | |
tree | 98a2d891a18bc93b11516b27ddbc98d4d605e1ff /OpenAL32/Include | |
parent | 0d2bbe17f2401feeae02972d927a8b72a4c28500 (diff) |
Store the source ID with the voice instead of the source pointer
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 68f539f3..e178a5a6 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -207,7 +207,7 @@ typedef struct ALvoice { std::atomic<ALvoiceProps*> Update; - std::atomic<ALsource*> Source; + std::atomic<ALuint> SourceID; std::atomic<bool> Playing; /** |