mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-05 04:37:41 +00:00
Ensures cycles_since_index_hole_ is wrapped to track length.
This commit is contained in:
parent
85cf8d89bc
commit
3d20ae47ea
@ -354,7 +354,7 @@ void Drive::end_writing() {
|
||||
}
|
||||
}
|
||||
patched_track_->add_segment(write_start_time_, write_segment_, clamp_writing_to_index_hole_);
|
||||
cycles_since_index_hole_ %= get_input_clock_rate();
|
||||
cycles_since_index_hole_ %= int(get_input_clock_rate() * rotational_multiplier_);
|
||||
invalidate_track();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user