aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--alc/context.cpp5
-rw-r--r--alc/context.h2
2 files changed, 1 insertions, 6 deletions
diff --git a/alc/context.cpp b/alc/context.cpp
index cf879d9c..290c4f01 100644
--- a/alc/context.cpp
+++ b/alc/context.cpp
@@ -444,11 +444,6 @@ ALCcontext::SourceListIterator ALCcontext::SourceListEnumerator::end() noexcept
}
-bool ALCcontext::has_eax() const noexcept
-{
- return eax_is_initialized_;
-}
-
bool ALCcontext::eax_is_capable() const noexcept
{
return eax_has_enough_aux_sends();
diff --git a/alc/context.h b/alc/context.h
index 93b70d83..b22aaf62 100644
--- a/alc/context.h
+++ b/alc/context.h
@@ -204,7 +204,7 @@ public:
#ifdef ALSOFT_EAX
public:
- bool has_eax() const noexcept;
+ bool has_eax() const noexcept { return eax_is_initialized_; }
bool eax_is_capable() const noexcept;