SEQSetTempo

C Specification

#include <revolution.h>
#include <revolution/seq.h>

#define SEQ_ALL_TRACKS 0xFFFFFFFF
void SEQSetTempo(SEQSEQUENCE *sequence, u32 track, f32 tempo);

Arguments

sequence pointer to user-initialized SEQSEQUENCE
track track index for the track for which the tempo is set
Use SEQ_ALL_TRACKS to set all tracks.
tempo tempo at which to set the sequence, in BPM (120.0f = 120 BPM)

Return Values

None.

Description

This function alters playback speed using a logical musical tempo.

See Also

SEQGetTempo

Revision History

03/01/2006 Initial version.