This commit is contained in:
Milan Nikolic 2017-02-21 15:19:22 +01:00
parent 29546140b9
commit 7e1cf349aa
13 changed files with 48 additions and 48 deletions

View file

@ -64,7 +64,7 @@ func NewSoundFromPointer(ptr unsafe.Pointer) Sound {
// NOTE: Anything longer than ~10 seconds should be streamed
type Music C.Music
// Audio stream type
// AudioStream type
// NOTE: Useful to create custom audio streams not bound to a specific file
type AudioStream struct {
// Frequency (samples per second)
@ -327,8 +327,8 @@ func SetMusicPitch(music Music, pitch float32) {
C.SetMusicPitch(cmusic, cpitch)
}
// Set music loop count (loop repeats)
// SetMusicLoopCount - NOTE: If set to -1, means infinite loop
// SetMusicLoopCount - Set music loop count (loop repeats)
// NOTE: If set to -1, means infinite loop
func SetMusicLoopCount(music Music, count float32) {
cmusic := *(*C.Music)(unsafe.Pointer(&music))
ccount := (C.float)(count)