Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
Music playing only in left channel — Gideros Forum

Music playing only in left channel

DiscipleDisciple Member
edited March 2014 in General questions
I just added music to the game I'm working on and when I test it in Gideros Player it only sounds on the left channel. I'm using the simplest code for playing the music:

local track1 = Sound.new("track1.mp3")
local track2 = Sound.new("track2.mp3")
local track = track2
local trackChannel
...
if not musicPlaying then
trackChannel = track:play(0, true)
musicPlaying = true
end

I wonder if it's only in the player that it happens or if will be that way when I export it too, and if there's something I don't know or I'm missing here. Thanks in advance!

P.S. Sorry for not wrapping the code, I don't know how to do it in these forums.

Comments

Sign In or Register to comment.