Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Whoops; logic bug. Squashed.
  • Loading branch information
icculus committed Oct 27, 2003
1 parent 171f048 commit 89424a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osx/alContext.c
Expand Up @@ -733,7 +733,8 @@ static ALvoid __alcMixContext(ALcontext *ctx, Float32 *dst, UInt32 frames)
if (firstDeadSource != -1) // some or all sources have stopped.
{
register ALsizei i = firstDeadSource;
for (srcs = playingSources + i; i < playCount; srcs++)
playingSources += i;
for (srcs = playingSources + 1; i < playCount; srcs++)
{
if (*srcs != NULL)
{
Expand Down

0 comments on commit 89424a6

Please sign in to comment.