From 6e91705c7beffe86aa92e315b98427c480b6453a Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 12 Mar 2026 07:47:03 -0400 Subject: Fix (band-aid) screen memory corruption. --- config/config.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/config.c b/config/config.c index 8f002b4..dc556c8 100644 --- a/config/config.c +++ b/config/config.c @@ -421,4 +421,10 @@ void main(void) { print(conf->url); putchar('\n'); } + + /* GRR! When the client loads, somehow, wherever the cursor is according + to the E: device, gets a 0 byte written to its screen address. + Clearing the screen here band-aids it: a byte of the client's screen + memory is getting zeroed out, but it's a byte that was already zero... */ + print("\x7d"); } -- cgit v1.2.3