Skip to content

Commit

Permalink
stop dropping frames for now
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Sep 26, 2024
1 parent 7ecc9cc commit abf510c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontends/rioterm/src/router/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ impl<'a> RouteWindow<'a> {

match vblank_interval >= elapsed_time {
true => Some(Duration::from_millis(vblank_interval - elapsed_time)),
false => None,
// false => None,
false => Some(Duration::from_millis(vblank_interval.wrapping_sub(1))),
}
}

Expand Down

0 comments on commit abf510c

Please sign in to comment.