Skip to content

Commit

Permalink
changes suggested
Browse files Browse the repository at this point in the history
  • Loading branch information
khanghugo committed Jul 11, 2024
1 parent 45d0149 commit 090b8c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/tas_studio/editor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use hltas::types::{
VectorialStrafingConstraints,
};
use hltas::HLTAS;
use itertools::{izip, Itertools};
use itertools::Itertools;
use thiserror::Error;

use self::db::{Action, ActionKind, Branch, Db};
Expand Down Expand Up @@ -4019,7 +4019,7 @@ fn smoothed_views(

// Walk forward half an interval.
middle_frame_half
.chain(izip!(
.chain(zip(
frames[i + 1..].iter().map(frame_time),
unwrapped[i + 1..].iter().copied(),
))
Expand Down

0 comments on commit 090b8c2

Please sign in to comment.