Added tempo and tick per row variables that convert into how long each note is for future playback control.

This commit is contained in:
2023-01-11 07:56:31 +01:00
parent 136d1a103c
commit 8dd99a5ead
2 changed files with 12 additions and 4 deletions

View File

@@ -12,6 +12,6 @@ use crate::tracker::Tracker;
fn main() {
let mut tracker = Tracker::new(4, 64);
tracker.load_file("./3266CHIP.MOD");
tracker.play_sample(1, 8287.0);
//tracker.play();
//tracker.play_sample(1, 8287.0);
tracker.play();
}