diff --git a/Cargo.lock b/Cargo.lock index 5f4f62a..bb045a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "phasetida-core" -version = "0.1.16" +version = "0.1.17" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 563d8a2..9f73e35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "phasetida-core" -version = "0.1.16" +version = "0.1.17" edition = "2024" [lib] diff --git a/src/draw.rs b/src/draw.rs index c90f3eb..6f9740f 100644 --- a/src/draw.rs +++ b/src/draw.rs @@ -309,7 +309,7 @@ fn process_normal_note( } = note_state; let should_high_light = i8::from(*highlight); let delta_y = floor_position - line_y; - if *time <= line_state.tick_time as i32 || *line_y > *floor_position + 0.001 { + if *time <= line_state.tick_time as i32 || *line_y > *floor_position + 0.01 { return; } let Point { x: raw_x, y: raw_y } =