aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index fc68236d..4e2402ca 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -4677,7 +4677,7 @@ ALC_API const ALCchar* ALC_APIENTRY alcGetStringiSOFT(ALCdevice *device, ALCenum
{
case ALC_HRTF_SPECIFIER_SOFT:
if(index >= 0 && (size_t)index < VECTOR_SIZE(device->HrtfList))
- str = alstr_get_cstr(VECTOR_ELEM(device->HrtfList, index).name);
+ str = VECTOR_ELEM(device->HrtfList, index).name;
else
alcSetError(device, ALC_INVALID_VALUE);
break;