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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-01-30 00:29:14 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-01-30 00:29:14 +0300
commit24446906bc81fdd7a899f352f9f3bafff8a4fd00 (patch)
tree90f0fa9a12336ab0b8c7f59bf4a0a1ff1b0c52f7 /intern/SoundSystem
parent48fc07716a343c92de796438ec908aad2538cbaf (diff)
Use ALsizei/GLsizei to fix compile errors on mac / gcc 4.x.
Diffstat (limited to 'intern/SoundSystem')
-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 98eed6bb104..399008b3b28 100644
--- a/intern/SoundSystem/openal/SND_OpenALDevice.cpp
+++ b/intern/SoundSystem/openal/SND_OpenALDevice.cpp
@@ -404,7 +404,7 @@ SND_WaveSlot* SND_OpenALDevice::LoadSample(const STR_String& name,
ALenum al_error = alGetError();
#ifdef OUDE_OPENAL
- unsigned int samplerate, numberofsamples; // openal_2.12
+ ALsizei samplerate, numberofsamples; // openal_2.12
#else
int samplerate, numberofsamples; // openal_2.14+
#endif