(screen: Screen, y: number)
| 493 | } |
| 494 | |
| 495 | function readLine(screen: Screen, y: number): string { |
| 496 | let line = '' |
| 497 | for (let x = 0; x < screen.width; x++) { |
| 498 | line += charInCellAt(screen, x, y) ?? ' ' |
| 499 | } |
| 500 | return line.trimEnd() |
| 501 | } |
| 502 | |
| 503 | function fullResetSequence_CAUSES_FLICKER( |
| 504 | frame: Frame, |