diff options
author | Chris Robinson <[email protected]> | 2020-08-28 00:09:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-08-28 00:09:46 -0700 |
commit | 1f486f820e97fd5ce1da40a87aa3b743800fb5b0 (patch) | |
tree | 04e70d2410fcaad3167899b81b2661b57c0488fe /alc/backends | |
parent | ecf30de36f6487c1f8a19ae0d03ba810078706f4 (diff) |
Use a separate structure for buffer storage
Diffstat (limited to 'alc/backends')
-rw-r--r-- | alc/backends/wave.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/backends/wave.cpp b/alc/backends/wave.cpp index c452379e..473d0314 100644 --- a/alc/backends/wave.cpp +++ b/alc/backends/wave.cpp @@ -271,8 +271,8 @@ bool WaveBackend::reset() case DevFmtAmbi3D: /* .amb output requires FuMa */ mDevice->mAmbiOrder = minu(mDevice->mAmbiOrder, 3); - mDevice->mAmbiLayout = AmbiLayout::FuMa; - mDevice->mAmbiScale = AmbiNorm::FuMa; + mDevice->mAmbiLayout = DevAmbiLayout::FuMa; + mDevice->mAmbiScale = DevAmbiScaling::FuMa; isbformat = 1; chanmask = 0; break; |