void SetSongPos(int h, int p)
setSongPos(mysong, 20);
Talkback #1 written by KingOfTheNorth on 2010-08-31.
This function goes by the bytes as the marker for the position. Using a song with 78,712 bytes as an example:
SetSongPos(mysong, (78712/2)); // sets the song at its halfway point
This code sets the position of the song at its halfway point of 39356 (being 78712 divided by 2 is 39356).
Doc Nav |
Your docs |