Skip to content

Commit

Permalink
Fix inverted frame_cycle check
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnsAnns committed Jun 13, 2024
1 parent ae827fc commit 1710457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async fn main() {
do_frame_cycle = false;
}

if !do_frame_cycle {
if do_frame_cycle {
scanline += 1;
}
}
Expand Down

0 comments on commit 1710457

Please sign in to comment.