diff options
Diffstat (limited to 'alc/backends/base.h')
-rw-r--r-- | alc/backends/base.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/alc/backends/base.h b/alc/backends/base.h index 764fb3f4..839fc424 100644 --- a/alc/backends/base.h +++ b/alc/backends/base.h @@ -55,18 +55,13 @@ enum class BackendType { Capture }; -enum class DevProbe { - Playback, - Capture -}; - struct BackendFactory { virtual bool init() = 0; virtual bool querySupport(BackendType type) = 0; - virtual std::string probe(DevProbe type) = 0; + virtual std::string probe(BackendType type) = 0; virtual BackendPtr createBackend(ALCdevice *device, BackendType type) = 0; |