diff options
author | Chris Robinson <[email protected]> | 2020-12-17 16:46:21 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-17 16:46:21 -0800 |
commit | 7d2e21334c5bc6423abed3b450d369829d7c1fde (patch) | |
tree | 957916bbcb6131be5b35620a9d3b9412f471e8ce /al/effect.cpp | |
parent | 4d1ac95ae2ef1ca3a20205b4cc9893b02f0c7c22 (diff) |
Move the AL error enum out of base_exception
Diffstat (limited to 'al/effect.cpp')
-rw-r--r-- | al/effect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/effect.cpp b/al/effect.cpp index 3cfccaa3..029ecaa8 100644 --- a/al/effect.cpp +++ b/al/effect.cpp @@ -72,7 +72,7 @@ const EffectList gEffectList[16]{ bool DisabledEffects[MAX_EFFECTS]; -effect_exception::effect_exception(ALenum code, const char *msg, ...) : base_exception{code} +effect_exception::effect_exception(ALenum code, const char *msg, ...) : mErrorCode{code} { std::va_list args; va_start(args, msg); |