WARNING: BREAKING CHANGE: Review audio looping system

Current looping system was broken, `loopCount` has been converted to `bool looping` and user can enable/disable with `music.looping = false`. `SetMusicLoopCount()` has been removed.
This commit is contained in:
raysan5 2020-05-14 14:00:37 +02:00
parent 3a33fe0fd9
commit 257f232d41
4 changed files with 10 additions and 25 deletions

View file

@ -51,6 +51,7 @@ int main(void)
}
Music music = LoadMusicStream("resources/mini1111.xm");
music.looping = false;
PlayMusicStream(music);