diff options
author | Chris Robinson <[email protected]> | 2020-12-25 06:40:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-25 06:40:13 -0800 |
commit | 204f7d88116a3d07f45c19d9a61c676ebf8d54c6 (patch) | |
tree | 8bc61c1673430ae1c46a3489726c99ea5535fc6e /alc/effects | |
parent | 20820fd01beb265722d8521ad725c3c479800273 (diff) |
Rename From2D to FromACN2D
Diffstat (limited to 'alc/effects')
-rw-r--r-- | alc/effects/convolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/convolution.cpp b/alc/effects/convolution.cpp index d0e203c5..948966b4 100644 --- a/alc/effects/convolution.cpp +++ b/alc/effects/convolution.cpp @@ -89,7 +89,7 @@ auto GetAmbiLayout(AmbiLayout layouttype) noexcept -> const std::array<uint8_t,M auto GetAmbi2DLayout(AmbiLayout layouttype) noexcept -> const std::array<uint8_t,MaxAmbi2DChannels>& { if(layouttype == AmbiLayout::FuMa) return AmbiIndex::FromFuMa2D; - return AmbiIndex::From2D; + return AmbiIndex::FromACN2D; } |