From 816bd8ab309dc0fe9afefcc5e3f2c294d3dc60a5 Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sun, 30 Jan 2022 05:42:44 -0800
Subject: Move ALSOFT_EAX definition to config.h

And disable it by default for non-Windows targets
---
 al/source.h | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

(limited to 'al/source.h')

diff --git a/al/source.h b/al/source.h
index 41cd6187..2fbb7b22 100644
--- a/al/source.h
+++ b/al/source.h
@@ -21,7 +21,7 @@
 #include "core/voice.h"
 #include "vector.h"
 
-#if ALSOFT_EAX
+#ifdef ALSOFT_EAX
 #include "eax_eax_call.h"
 #include "eax_fx_slot_index.h"
 #include "eax_utils.h"
@@ -47,11 +47,10 @@ struct ALbufferQueueItem : public VoiceBufferItem {
 };
 
 
-#if ALSOFT_EAX
-struct EaxSourceInitParam
-{
-	ALCcontext* al_context{};
-	ALfilter* al_filter{};
+#ifdef ALSOFT_EAX
+struct EaxSourceInitParam {
+    ALCcontext* al_context{};
+    ALfilter* al_filter{};
 }; // EaxSourceInitParam
 
 
@@ -213,7 +212,7 @@ struct ALsource {
 
     DISABLE_ALLOC()
 
-#if ALSOFT_EAX
+#ifdef ALSOFT_EAX
 public:
     void eax_initialize(
         const EaxSourceInitParam& param) noexcept;
-- 
cgit v1.2.3