aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-01-12 11:34:23 -0800
committerChris Robinson <[email protected]>2018-01-12 11:34:23 -0800
commit77910afe577458595a3fccd2487fcb567067be58 (patch)
tree2774337be611ea27cfffaddb61b8e137d45b660f /Alc/ALc.c
parent4db1328bc58602619e12f67cb0b31e8785662ed2 (diff)
Make NumAttrsForDevice do similar type checks as alcGetIntegerv
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index e70e83dd..dfebe02e 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -3104,7 +3104,8 @@ ALC_API const ALCchar* ALC_APIENTRY alcGetString(ALCdevice *Device, ALCenum para
static inline ALCsizei NumAttrsForDevice(ALCdevice *device)
{
if(device->Type == Capture) return 9;
- if(device->Type == Loopback && device->FmtChans == DevFmtAmbi3D)
+ if(device->Type != Loopback) return 29;
+ if(device->FmtChans == DevFmtAmbi3D)
return 35;
return 29;
}