aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/null.cpp
diff options
context:
space:
mode:
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}};