feature/capability-based-deps #53

Merged
david merged 130 commits from feature/capability-based-deps into main 2026-03-31 01:55:23 +00:00
Showing only changes of commit 5352054d09 - Show all commits

View File

@@ -110,7 +110,7 @@ class TerminalDisplay:
buffer = render_border(buffer, self.width, self.height, fps, frame_time)
# Write buffer with cursor home + erase down to avoid flicker
output = "\033[H\033[J" + "".join(buffer)
output = "\033[H\033[J" + "\n".join(buffer)
sys.stdout.buffer.write(output.encode())
sys.stdout.flush()