aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/null.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-04-24 09:03:14 -0700
committerChris Robinson <[email protected]>2021-04-24 09:03:14 -0700
commit581174ef98e92de89244412ddc94ae93d172e69c (patch)
tree4c818d345ed460a2656bff8ce9355e36c6e3ba26 /alc/backends/null.cpp
parentb54bb388a3dbd92518beef4bda03df5854aad1a9 (diff)
Use the DeviceBase for the backend
Diffstat (limited to 'alc/backends/null.cpp')
-rw-r--r--alc/backends/null.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/backends/null.cpp b/alc/backends/null.cpp
index d3dfc3a4..763d4d2e 100644
--- a/alc/backends/null.cpp
+++ b/alc/backends/null.cpp
@@ -47,7 +47,7 @@ constexpr char nullDevice[] = "No Output";
struct NullBackend final : public BackendBase {
- NullBackend(ALCdevice *device) noexcept : BackendBase{device} { }
+ NullBackend(DeviceBase *device) noexcept : BackendBase{device} { }
int mixerProc();
@@ -166,7 +166,7 @@ std::string NullBackendFactory::probe(BackendType type)
return outnames;
}
-BackendPtr NullBackendFactory::createBackend(ALCdevice *device, BackendType type)
+BackendPtr NullBackendFactory::createBackend(DeviceBase *device, BackendType type)
{
if(type == BackendType::Playback)
return BackendPtr{new NullBackend{device}};