Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 2, 2002
1 parent c91b900 commit 1499e4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions CHANGES
@@ -1,8 +1,6 @@
current:
1.2.5:
Ryan C. Gordon - Wed Oct 30 07:12:06 EST 2002
* Small, looping music samples should now be able to fade out correctly.

1.2.5:
Sam Lantinga - Sun Oct 20 20:52:24 PDT 2002
* Added shared library support for MacOS X
Pete Shinners - Wed Oct 16 17:10:08 EDT 2002
Expand Down
2 changes: 2 additions & 0 deletions mixer.c
Expand Up @@ -312,6 +312,7 @@ int Mix_OpenAudio(int frequency, Uint16 format, int nchannels, int chunksize)
mix_channel[i].tag = -1;
mix_channel[i].expire = 0;
mix_channel[i].effects = NULL;
mix_channel[i].paused = 0;
}
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);

Expand Down Expand Up @@ -353,6 +354,7 @@ int Mix_AllocateChannels(int numchans)
mix_channel[i].tag = -1;
mix_channel[i].expire = 0;
mix_channel[i].effects = NULL;
mix_channel[i].paused = 0;
}
}
num_channels = numchans;
Expand Down

0 comments on commit 1499e4a

Please sign in to comment.