Skip to content

Commit

Permalink
Fixed: Compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaakko Keränen committed Jan 9, 2014
1 parent fe1420c commit 916647c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doomsday/client/src/audio/sys_audiod_sdlmixer.cpp
Expand Up @@ -42,6 +42,8 @@

#include "audio/sys_audiod_sdlmixer.h"

#include <de/Log>

// MACROS ------------------------------------------------------------------

#define DEFAULT_MIDI_COMMAND "" //"timidity"
Expand Down Expand Up @@ -187,8 +189,9 @@ int DS_SDLMixerInit(void)
SDL_VERSIONNUM(compVer.major, compVer.minor, compVer.patch))
{
LOG_AUDIO_WARNING("Linked version of SDL_mixer (%u.%u.%u) is "
"newer than expected (%u.%u.%u)", linkVer->major, linkVer->minor,
linkVer->patch, compVer.major, compVer.minor, compVer.patch);
"newer than expected (%u.%u.%u)")
<< linkVer->major << linkVer->minor << linkVer->patch
<< compVer.major << compVer.minor << compVer.patch;
}

if(Mix_OpenAudio(MIX_DEFAULT_FREQUENCY, MIX_DEFAULT_FORMAT, 2, 1024))
Expand Down

0 comments on commit 916647c

Please sign in to comment.