aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-18 08:01:50 -0800
committerChris Robinson <[email protected]>2018-11-18 08:01:50 -0800
commit8b8f01e25d31e7874acb5af7e0c3c7c801497410 (patch)
tree87656be5fa086259978724dbdda186439a93fc63 /OpenAL32/Include
parent336b7b77999fec857093c82c050c96b8ead3cb97 (diff)
Avoid more cases of an enum variable and type name clash
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index ef44fb00..95753cc4 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -584,12 +584,12 @@ struct ALCdevice_struct {
DevFmtChannels FmtChans{};
DevFmtType FmtType{};
ALboolean IsHeadphones{};
- ALsizei AmbiOrder{};
+ ALsizei mAmbiOrder{};
/* For DevFmtAmbi* output only, specifies the channel order and
* normalization.
*/
- AmbiLayout AmbiLayout{};
- AmbiNorm AmbiScale{};
+ AmbiLayout mAmbiLayout{};
+ AmbiNorm mAmbiScale{};
ALCenum LimiterState{ALC_DONT_CARE_SOFT};