Beispiel #1
0
// undocumented
func SetSynchroValue(value int) bool {
	_value := (C.int)(value)
	return int(C.Mix_SetSynchroValue(_value)) == 0
}
Beispiel #2
0
// Synchro value is set by MikMod from modules while playing
func SetSynchroValue(value int) (int) {
  return int(C.Mix_SetSynchroValue(C.int(value)))
}