diff options
author | Chris Robinson <[email protected]> | 2020-06-12 11:58:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-06-12 12:53:47 -0700 |
commit | 6ce9bf6c9441503bc7e7c3451f0954cbdfbeb6ab (patch) | |
tree | 51731fdc32751dd82dfcfc9fd23768e075e54e92 /alc/backends/alsa.cpp | |
parent | 26eccd159f0256d92ffdb8bdc9dee0bf3e73be57 (diff) |
Move a couple related functions to the backend base
Diffstat (limited to 'alc/backends/alsa.cpp')
-rw-r--r-- | alc/backends/alsa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/alsa.cpp b/alc/backends/alsa.cpp index 993a4d2e..2259c46c 100644 --- a/alc/backends/alsa.cpp +++ b/alc/backends/alsa.cpp @@ -787,7 +787,7 @@ bool AlsaPlayback::reset() mDevice->UpdateSize = static_cast<ALuint>(periodSizeInFrames); mDevice->Frequency = rate; - SetDefaultChannelOrder(mDevice); + setDefaultChannelOrder(); return true; } |