Skip to content

Commit

Permalink
mixer.c (mix_channels): fix misplaced SDLCALL so that it compiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 16, 2017
1 parent 2c527c9 commit e403e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mixer.c
Expand Up @@ -304,8 +304,8 @@ static void *Mix_DoEffects(int chan, void *snd, int len)


/* Mixing function */
static SDLCALL
void mix_channels(void *udata, Uint8 *stream, int len)
static void SDLCALL
mix_channels(void *udata, Uint8 *stream, int len)
{
Uint8 *mix_input;
int i, mixable, volume = SDL_MIX_MAXVOLUME;
Expand Down

0 comments on commit e403e54

Please sign in to comment.