diff options
| author | Michael Maltese <mchtly@gmail.com> | 2017-06-25 23:52:51 -0700 |
|---|---|---|
| committer | Michael Maltese <mchtly@gmail.com> | 2017-06-27 00:06:14 -0700 |
| commit | 18e70cdf917fc355e59558dce8614431a29cc5ed (patch) | |
| tree | e4746fcc30bf69a6b55474dbcbf8f239cee940f9 /Source/Core/AudioCommon/OpenALStream.cpp | |
| parent | 42ea1c8ecf079087ba6101a42995b64106a63a8f (diff) | |
Only build OpenAL on Windows
Diffstat (limited to 'Source/Core/AudioCommon/OpenALStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/OpenALStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/AudioCommon/OpenALStream.cpp b/Source/Core/AudioCommon/OpenALStream.cpp index ffb0bf93dd..1265b27ae2 100644 --- a/Source/Core/AudioCommon/OpenALStream.cpp +++ b/Source/Core/AudioCommon/OpenALStream.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. -#if defined HAVE_OPENAL && HAVE_OPENAL +#ifdef _WIN32 #include <climits> #include <cstring> @@ -347,4 +347,4 @@ void OpenALStream::SoundLoop() } } -#endif // HAVE_OPENAL +#endif // _WIN32 |
