From 8dcdf3bf0b9ce00dfb85550fff643f32026e8e05 Mon Sep 17 00:00:00 2001 From: Frank van Beek Date: Sat, 4 Jan 2003 18:17:50 +0000 Subject: - replaced #elif with more correct version: < #elif _WIN32 --- > #elif defined(_WIN32) --- intern/SoundSystem/openal/SND_OpenALDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') 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 -- cgit v1.2.3