diff options
author | Chris Robinson <[email protected]> | 2010-11-27 00:15:07 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-27 00:15:07 -0800 |
commit | d2895c7985c77299617ee0562f53e210e8dd04ca (patch) | |
tree | f7292e5f184bb7b758bac5bceb04766626bde2e1 /OpenAL32 | |
parent | 6abb9d151eef04d5770bbdd584cd7cdc565f970d (diff) |
Use the enums in a couple more places
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alSource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 0e1e7eb7..5244edb7 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -555,7 +555,7 @@ AL_API ALvoid AL_APIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue) Source->queue = BufferListItem; Source->BuffersInQueue = 1; - if(aluChannelsFromFormat(buffer->format) == 1) + if(buffer->FmtChannels == FmtMono) Source->Update = CalcSourceParams; else Source->Update = CalcNonAttnSourceParams; @@ -1595,7 +1595,7 @@ AL_API ALvoid AL_APIENTRY alSourceQueueBuffers(ALuint source, ALsizei n, const A Frequency = buffer->frequency; Format = buffer->eOriginalFormat; - if(aluChannelsFromFormat(buffer->format) == 1) + if(buffer->FmtChannels == FmtMono) Source->Update = CalcSourceParams; else Source->Update = CalcNonAttnSourceParams; |