aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-12 22:26:12 -0800
committerChris Robinson <[email protected]>2018-11-12 22:26:12 -0800
commita6d780574de081865ec673cb5c930a2c7796f43a (patch)
tree9683cf814ed95d47c52445451b4d6e3e0407409d /OpenAL32
parentd4d0b1fdd48e1c056fad9cbe3e063fc9de1a0b75 (diff)
Make the enumerated HRTF entry name a char*
Would ideally be a std::string with the HRTF name itself, but they're still seen in C code.
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 03d07c0d..8cb22615 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -562,7 +562,7 @@ TYPEDEF_VECTOR(ALeffectslotPtr, vector_ALeffectslotPtr)
typedef struct EnumeratedHrtf {
- al_string name;
+ char *name;
struct HrtfEntry *hrtf;
} EnumeratedHrtf;