Hello,
I was wondering if anyone here has come across this warning message before in the terminal window, google doesn’t seem to be bringing up many references to it:
“Warning: audio error: Channel 0 is already in use”
I get this message when i change scene, but haven’t come across this before and i’m essentially reusing code from my other projects. The only time i am specifically defining the channel is in:
audio.setVolume( 0.8, { channel=1 } );
and
musicChannel = audio.play(soundMusic, { channel=1, loops=0, fadein=1000, onComplete=playNewTrack})
My sound effects on the other hand just use:
local soundEffect3 = audio.play(sound3)
…without any mention of channel.
Does anyone have any general idea if the error message relates to any of the above code?
Thanks!