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.
15 lines
284 B
15 lines
284 B
|
|
void playStep(bool play, int *timer, int *step) {
|
|
*timer = *timer >= *step ? 0 : *timer+1;
|
|
usleep(1000);
|
|
|
|
if(*timer == 0) {
|
|
printf("%d\n", *timer);
|
|
|
|
Mix_PlayChannel(-1, _sample[1], 0);
|
|
}
|
|
}
|
|
|
|
void playSample(int sample) {
|
|
Mix_PlayChannel(-1, _sample[sample-1], 0);
|
|
}
|