From a54b2cb7af733ae053b0aa78eca2bd4a3419d23d Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 11 Oct 2021 21:24:33 -0700 Subject: [PATCH] . --- 500fake-screen.mu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/500fake-screen.mu b/500fake-screen.mu index bda3673f..c34beeaa 100644 --- a/500fake-screen.mu +++ b/500fake-screen.mu @@ -10,6 +10,8 @@ # - Drawing pixels atop text or vice versa is not supported. Results in a fake # screen will not mimic real screens in these situations. # - Fake screens currently also assume a fixed-width 8x16 font. +# - Combining characters don't render like in a real screen (which itself +# isn't ideal). type screen { # text mode @@ -23,7 +25,7 @@ type screen { } type screen-cell { - data: code-point # TODO: support combining characters overlaid on another character + data: code-point color: int background-color: int unused?: boolean