diff options
author | Chris Robinson <[email protected]> | 2020-12-04 13:53:56 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-04 13:53:56 -0800 |
commit | 50e33ce8f49fdf40a9c48871d63e2cb49d72c94f (patch) | |
tree | 71273dd81371f9b14db1ffe138baf769f471d886 /alc/alcmain.h | |
parent | c4132b80ede60ead27fae595623ac61674ed166a (diff) |
Change some macros into constexpr variables
Diffstat (limited to 'alc/alcmain.h')
-rw-r--r-- | alc/alcmain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alcmain.h b/alc/alcmain.h index 42808f26..68d0e31d 100644 --- a/alc/alcmain.h +++ b/alc/alcmain.h @@ -267,7 +267,7 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice> { /* The "dry" path corresponds to the main output. */ MixParams Dry; - ALuint NumChannelsPerOrder[MAX_AMBI_ORDER+1]{}; + ALuint NumChannelsPerOrder[MaxAmbiOrder+1]{}; /* "Real" output, which will be written to the device buffer. May alias the * dry buffer. |