diff options
-rw-r--r-- | backends/midi/alsa.cpp | 2 | ||||
-rw-r--r-- | base/plugins.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/midi/alsa.cpp b/backends/midi/alsa.cpp index 076655bfed..a895ef8b80 100644 --- a/backends/midi/alsa.cpp +++ b/backends/midi/alsa.cpp @@ -24,7 +24,7 @@ #include "common/scummsys.h" -#if defined(UNIX) && defined(USE_ALSA) +#if defined(USE_ALSA) #include "common/config-manager.h" #include "common/util.h" diff --git a/base/plugins.cpp b/base/plugins.cpp index 29383f1009..f23fbb48d8 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -172,7 +172,7 @@ public: #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) LINK_PLUGIN(WINDOWS) #endif - #if defined(UNIX) && defined(USE_ALSA) + #if defined(USE_ALSA) LINK_PLUGIN(ALSA) #endif #if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__) && !defined(__ANDROID__) |