- Fixed: S_IsChannelUsed() is declared as static, so it should be defined

as such, too.
This commit is contained in:
Randy Heit 2013-07-01 22:02:46 -05:00
parent 001ed91fd4
commit 23e21cc85e

View file

@ -1683,7 +1683,7 @@ bool S_GetSoundPlayingInfo (const FPolyObj *poly, int sound_id)
//
//==========================================================================
bool S_IsChannelUsed(AActor *actor, int channel, int *seen)
static bool S_IsChannelUsed(AActor *actor, int channel, int *seen)
{
if (*seen & (1 << channel))
{