diff options
Diffstat (limited to 'alc')
-rw-r--r-- | alc/backends/wasapi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/wasapi.cpp b/alc/backends/wasapi.cpp index 1fd37e37..9c2553d1 100644 --- a/alc/backends/wasapi.cpp +++ b/alc/backends/wasapi.cpp @@ -1249,7 +1249,7 @@ FORCE_ALIGN int WasapiPlayback::mixerSpatialProc() channels.reserve(static_cast<uint>(al::popcount(flags))); while(flags) { - DWORD id{1u << al::countr_zero(flags)}; + auto id = UT{1} << al::countr_zero(flags); flags &= ~id; channels.emplace_back(); |