Fix compiler warning.
This commit is contained in:
parent
d93c0c9400
commit
7f58f02277
|
@ -27,7 +27,7 @@ void playSound(int sid, float x)
|
||||||
if ((!engine.useSound) || (!engine.useAudio))
|
if ((!engine.useSound) || (!engine.useAudio))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int channel;
|
int channel = -1;
|
||||||
static int freechannel = 4;
|
static int freechannel = 4;
|
||||||
|
|
||||||
switch(sid)
|
switch(sid)
|
||||||
|
|
Loading…
Reference in New Issue