- Fixed: The initial play of a GME song always started track 0.

SVN r1655 (trunk)
This commit is contained in:
Randy Heit 2009-06-08 23:37:39 +00:00
commit 64b7468bf4
2 changed files with 2 additions and 1 deletions

View file

@ -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;
}