You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
295 B

void playPattern(int *timer, int duration, int *step) {
*timer = *timer >= duration ? 0 : *timer+1;
usleep(1000);
if(*timer == 0) {
//printf("%d\n", *timer);
5 years ago
Mix_PlayChannel(-1, samples[1], 0);
}
}
void playSample(int sample) {
5 years ago
Mix_PlayChannel(-1, samples[sample-1], 0);
}