aboutsummaryrefslogtreecommitdiff
path: root/config/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c6
1 files changed, 6 insertions, 0 deletions
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");
}