Set minimum allowable tempo to 0 rather than 1

This commit is contained in:
gheskett
2021-09-07 05:28:44 -05:00
parent 89952ab89b
commit e94c4ec8f8

View File

@@ -2504,8 +2504,8 @@ void sequence_player_process_sequence(struct SequencePlayer *seqPlayer) {
//if (cmd){}
if ((s16) seqPlayer->tempo <= 0) {
seqPlayer->tempo = 1;
if ((s16) seqPlayer->tempo < 0) {
seqPlayer->tempo = 0;
}
break;