You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
Set minimum allowable tempo to 0 rather than 1
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user