fix offset

This commit is contained in:
Kelvin Sherlock 2019-07-07 10:59:16 -04:00
parent 562272d0c1
commit 6c08fa1373
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}