diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-12-29 02:21:53 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-12-29 02:21:53 -0800 |
commit | 63fc74beaac497d35bd74cb202e3f4ffb2dbe7fb (patch) | |
tree | 9c3000932649cc6bc84a58695f3aa95d40a64e07 /Alc/alc.cpp | |
parent | 71a4d6db6f88cbb735cd959b3dd16d83a27474cf (diff) |
Don't bother with an explicit Loopback backend type
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r-- | Alc/alc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp index 517e98d3..167ee3e6 100644 --- a/Alc/alc.cpp +++ b/Alc/alc.cpp @@ -4094,7 +4094,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(const ALCchar *deviceN device->NumMonoSources = device->SourcesMax - device->NumStereoSources; device->Backend = LoopbackBackendFactory::getFactory().createBackend(device.get(), - BackendType::Loopback); + BackendType::Playback); if(!device->Backend) { device = nullptr; |