aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-11-27 00:15:07 -0800
committerChris Robinson <[email protected]>2010-11-27 00:15:07 -0800
commitd2895c7985c77299617ee0562f53e210e8dd04ca (patch)
treef7292e5f184bb7b758bac5bceb04766626bde2e1 /OpenAL32
parent6abb9d151eef04d5770bbdd584cd7cdc565f970d (diff)
Use the enums in a couple more places
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/alSource.c4
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;