aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32')
-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 5adabb18..5ff1e064 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -552,17 +552,17 @@ typedef union AmbiConfig {
typedef struct BufferSubList {
- ALuint64 FreeMask{0u};
+ ALuint64 FreeMask{~ALuint64{}};
struct ALbuffer *Buffers{nullptr}; /* 64 */
} BufferSubList;
typedef struct EffectSubList {
- ALuint64 FreeMask{0u};
+ ALuint64 FreeMask{~ALuint64{}};
struct ALeffect *Effects{nullptr}; /* 64 */
} EffectSubList;
typedef struct FilterSubList {
- ALuint64 FreeMask{0u};
+ ALuint64 FreeMask{~ALuint64{}};
struct ALfilter *Filters{nullptr}; /* 64 */
} FilterSubList;