func (h *Haptic) SetAutocenter(autocenter int) int { return int(C.SDL_HapticSetAutocenter(h.cptr(), C.int(autocenter))) }
func (haptic *Haptic) SetAutocenter(autocenter int) int { _haptic := (*C.SDL_Haptic)(unsafe.Pointer(haptic)) _autocenter := (C.int)(autocenter) return (int)(C.SDL_HapticSetAutocenter(_haptic, _autocenter)) }