diff options
author | Chris Robinson <[email protected]> | 2014-11-21 13:45:57 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-21 13:45:57 -0800 |
commit | 4ad6905c135d6964e57fe48fb7f93e579d028887 (patch) | |
tree | c2de2460a576bfe06ede0b56d286987545f21597 /OpenAL32/Include | |
parent | d608f0e9f0e3c321ad02f4cbacde74df007fc2cd (diff) |
Allocate the DryBuffer dynamically
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2a6bac60..083d2613 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -673,7 +673,7 @@ struct ALCdevice_struct alignas(16) ALfloat FilteredData[BUFFERSIZE]; // Dry path buffer mix - alignas(16) ALfloat DryBuffer[MAX_OUTPUT_CHANNELS][BUFFERSIZE]; + alignas(16) ALfloat (*DryBuffer)[BUFFERSIZE]; /* Running count of the mixer invocations, in 31.1 fixed point. This * actually increments *twice* when mixing, first at the start and then at |