Fix compiler warning.

This commit is contained in:
Guus Sliepen 2012-03-11 15:11:15 +01:00
parent d93c0c9400
commit 7f58f02277
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ void playSound(int sid, float x)
if ((!engine.useSound) || (!engine.useAudio))
return;
int channel;
int channel = -1;
static int freechannel = 4;
switch(sid)