aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alcmain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-13 20:04:22 -0700
committerChris Robinson <[email protected]>2019-09-13 20:04:22 -0700
commit2646f509ee686f21458c32a990346be6e2a806d1 (patch)
tree3ff687847b038b43a3ad94bf5778b605d5b86b48 /alc/alcmain.h
parent42ae95b8fafb0ea1fa676b1e0f67b23fd375a817 (diff)
Store the ambisonic order as unsigned
Diffstat (limited to 'alc/alcmain.h')
-rw-r--r--alc/alcmain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/alcmain.h b/alc/alcmain.h
index f7842d96..933ee779 100644
--- a/alc/alcmain.h
+++ b/alc/alcmain.h
@@ -213,9 +213,9 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice> {
ALuint BufferSize{};
DevFmtChannels FmtChans{};
- DevFmtType FmtType{};
+ DevFmtType FmtType{};
ALboolean IsHeadphones{AL_FALSE};
- ALsizei mAmbiOrder{0};
+ ALuint mAmbiOrder{0};
/* For DevFmtAmbi* output only, specifies the channel order and
* normalization.
*/