Reverse the order of clock mod options. #16

Merged
awonak merged 5 commits from reverse-clock-mod-index into main 2025-07-22 00:00:49 +00:00
3 changed files with 15 additions and 19 deletions
Showing only changes of commit 90644fb841 - Show all commits

View File

@ -141,7 +141,7 @@ void HandleIntClockTick(uint32_t tick) {
if (tick % pulse_high_ticks == 0) {
gravity.pulse.High();
} else if (pulse_low_ticks % pulse_high_ticks == 0) {
gravity.pulse.Low();
gravity.pulse.Low();
}
}