Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorFrank van Beek <frank@iae.nl>2003-01-04 21:17:50 +0300
committerFrank van Beek <frank@iae.nl>2003-01-04 21:17:50 +0300
commit8dcdf3bf0b9ce00dfb85550fff643f32026e8e05 (patch)
treec6ee765a9b4a61f627a7b9aa087b17615fc88a53 /intern
parentf92d4b865035cf776d148b42ac7a7eef2bfb620c (diff)
- replaced #elif with more correct version:
< #elif _WIN32 --- > #elif defined(_WIN32)
Diffstat (limited to 'intern')
-rw-r--r--intern/SoundSystem/openal/SND_OpenALDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/SoundSystem/openal/SND_OpenALDevice.cpp b/intern/SoundSystem/openal/SND_OpenALDevice.cpp
index e8dd591f6c6..0050c9eb56a 100644
--- a/intern/SoundSystem/openal/SND_OpenALDevice.cpp
+++ b/intern/SoundSystem/openal/SND_OpenALDevice.cpp
@@ -261,7 +261,7 @@ SND_OpenALDevice::SND_OpenALDevice()
{
#ifdef OUDE_OPENAL
ALenum alc_error = ALC_NO_ERROR; // openal_2.12
-#elif _WIN32
+#elif defined(_WIN32)
// alcGetError has no arguments on windows
ALenum alc_error = alcGetError(); // openal_2.14+
#else