projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f92d4b8
)
- replaced #elif with more correct version:
author
Frank van Beek <frank@iae.nl>
Sat, 4 Jan 2003 18:17:50 +0000
(18:17 +0000)
committer
Frank van Beek <frank@iae.nl>
Sat, 4 Jan 2003 18:17:50 +0000
(18:17 +0000)
< #elif _WIN32
---
> #elif defined(_WIN32)
intern/SoundSystem/openal/SND_OpenALDevice.cpp
patch
|
blob
|
history
diff --git
a/intern/SoundSystem/openal/SND_OpenALDevice.cpp
b/intern/SoundSystem/openal/SND_OpenALDevice.cpp
index e8dd591f6c60b7af50eab13903e50ed6ee885c05..0050c9eb56a98a500cdb7869308d576948711383 100644
(file)
--- 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