aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-10-07 22:42:54 -0700
committerChris Robinson <[email protected]>2019-10-07 22:42:54 -0700
commitf0fa6c6baf673a35337d2f2cb5548dd1e33c11e7 (patch)
treed4f75abedf62572dc8ad2d8e69513b49615e373a /alc/backends
parent9b411cfcbefc0e52f4b130dbad6b52bdc3861c13 (diff)
Fix BackendVase typo
Diffstat (limited to 'alc/backends')
-rw-r--r--alc/backends/base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/base.cpp b/alc/backends/base.cpp
index 4fce0a67..25531cf5 100644
--- a/alc/backends/base.cpp
+++ b/alc/backends/base.cpp
@@ -30,7 +30,7 @@ BackendBase::BackendBase(ALCdevice *device) noexcept : mDevice{device}
BackendBase::~BackendBase() = default;
bool BackendBase::reset()
-{ throw al::backend_exception{ALC_INVALID_VALUE, "Invalid BackendVase call"}; }
+{ throw al::backend_exception{ALC_INVALID_DEVICE, "Invalid BackendBase call"}; }
ALCenum BackendBase::captureSamples(al::byte*, ALCuint)
{ return ALC_INVALID_DEVICE; }