From 6c08fa13735ae44f0a077aea6807c8711bba7c27 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sun, 7 Jul 2019 10:59:16 -0400 Subject: [PATCH] fix offset --- connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connection.c b/connection.c index f983c4c..16c2331 100644 --- a/connection.c +++ b/connection.c @@ -182,7 +182,7 @@ Word ConnectionOpen(Connection *buffer, const char *host, Word port) { if (buffer->displayPtr) { static char message[256] = "\pDNR lookup: "; BlockMove(host + 1, message + 13, host[0]); - message[0] = 13 + host[0]; + message[0] = 12 + host[0]; buffer->displayPtr(message); }