From: Brett Gordon Date: Wed, 7 Oct 2015 14:53:00 +0000 (-0400) Subject: add a reference to a fuzix display mode struct in our per-tty struct. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3167714a43f267164c3b11119c505a1af8738680;p=FUZIX.git add a reference to a fuzix display mode struct in our per-tty struct. --- diff --git a/Kernel/platform-coco3/devtty.h b/Kernel/platform-coco3/devtty.h index 53a518ae..fc272a86 100644 --- a/Kernel/platform-coco3/devtty.h +++ b/Kernel/platform-coco3/devtty.h @@ -2,6 +2,7 @@ #define __DEVTTY_DOT_H__ #include <../include/vt.h> +#include <../include/graphics.h> static struct pty { unsigned char *base; /* base of buffer in cpu space */ @@ -14,6 +15,7 @@ static struct pty { unsigned char height; /* text height */ unsigned char right; /* right most coord */ unsigned char bottom; /* bottom most coord */ + struct display *fdisp; /* ptr to struct for ioctl */ }; extern struct pty *curpty;