- Fixed: The initial play of a GME song always started track 0.
SVN r1655 (trunk)
This commit is contained in:
parent
39455bd80f
commit
64b7468bf4
2 changed files with 2 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ void GMESong::Play(bool looping, int track)
|
|||
{
|
||||
m_Status = STATE_Stopped;
|
||||
m_Looping = looping;
|
||||
if (StartTrack(0) && m_Stream->Play(looping, 1))
|
||||
if (StartTrack(track) && m_Stream->Play(looping, 1))
|
||||
{
|
||||
m_Status = STATE_Playing;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue