From 3167714a43f267164c3b11119c505a1af8738680 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Wed, 7 Oct 2015 10:53:00 -0400 Subject: [PATCH] add a reference to a fuzix display mode struct in our per-tty struct. --- Kernel/platform-coco3/devtty.h | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.34.1