aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-09-24 10:45:34 -0700
committerChris Robinson <[email protected]>2015-09-24 10:45:34 -0700
commit83659db996ef3204e5b8693642b44193f4947299 (patch)
tree56848d726d549440dd5c75a4e9a7a0c2391bddb8
parentef4337092708aa8e1c303abf582a9bab993751bd (diff)
Return the number of properties written
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index bba0def2..eb0b0bfb 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2885,7 +2885,7 @@ static ALCsizei GetIntegerv(ALCdevice *device, ALCenum param, ALCsizei size, ALC
case ALC_HRTF_STATUS_SOFT:
values[0] = device->Hrtf_Status;
- break;
+ return 1;
default:
alcSetError(device, ALC_INVALID_ENUM);