Skip to content

Commit

Permalink
fix: broken CI stories
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Sep 6, 2024
1 parent 2693b30 commit 7f74d5d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/replay/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,9 @@ func (r *Replay) renderSeek(state *tty.State) {
return
}

for row := 0; row < size.R; row++ {
for col := 0; col < size.C; col++ {
stateSize := state.Image.Size()
for row := 0; row < stateSize.R; row++ {
for col := 0; col < stateSize.C; col++ {
state.Image[row][col].FG = emu.ANSIColor(7)
}
}
Expand Down

0 comments on commit 7f74d5d

Please sign in to comment.