diff options
author | Chris Robinson <[email protected]> | 2017-04-05 12:27:30 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-05 12:27:30 -0700 |
commit | 2eaa10fc213dd60b197129da17b431b3d7e9f1d5 (patch) | |
tree | 21795210b08e9d29b5afff3fcfe557e58b079f05 /OpenAL32 | |
parent | f76dea0c0321ebcc0f5a8838f1826309463cd2c1 (diff) |
Load HRTF files as needed
Currently only applies to external files, rather than embedded datasets. Also,
HRTFs aren't unloaded after being loaded, until library shutdown.
Diffstat (limited to 'OpenAL32')
-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 3a26bff2..4807e07d 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -637,7 +637,7 @@ typedef struct DirectHrtfState { typedef struct EnumeratedHrtf { al_string name; - const struct HrtfEntry *hrtf; + struct HrtfEntry *hrtf; } EnumeratedHrtf; TYPEDEF_VECTOR(EnumeratedHrtf, vector_EnumeratedHrtf) |