From: Brett Gordon Date: Wed, 7 Oct 2015 15:18:56 +0000 (-0400) Subject: coco3: tty: make initialized data match linked fmodes, e.i. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dd36eb3a19c6073da99e3a41fe2efd3c11e84030;p=FUZIX.git coco3: tty: make initialized data match linked fmodes, e.i. vt's are now 25 rows. --- diff --git a/Kernel/platform-coco3/devtty.c b/Kernel/platform-coco3/devtty.c index 0af83988..0f4f5b7e 100644 --- a/Kernel/platform-coco3/devtty.c +++ b/Kernel/platform-coco3/devtty.c @@ -134,11 +134,11 @@ static struct pty ptytab[] = { 0, {0, 0, 0, 0}, 0xb400 / 8, - 0x14, /* 80 column */ + 0x74, /* 80 column */ 80, - 21, + 25, 79, - 20, + 24, &fmodes[0] }, { @@ -147,11 +147,11 @@ static struct pty ptytab[] = { 0, {0, 0, 0, 0}, 0xac80 / 8, - 0x0c, /* 40 column */ + 0x6c, /* 40 column */ 40, - 21, + 25, 39, - 20, + 24, &fmodes[1] } };