about summary refs log tree commit diff stats
path: root/500fake-screen.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-11 21:24:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-11 21:24:33 -0700
commita54b2cb7af733ae053b0aa78eca2bd4a3419d23d (patch)
treeb79d32d08c178689ca82fad3ef06f25661c2df50 /500fake-screen.mu
parentbb1d5c2cd33cd196becbc39c3f8d287cf5a080bf (diff)
downloadmu-a54b2cb7af733ae053b0aa78eca2bd4a3419d23d.tar.gz
.
Diffstat (limited to '500fake-screen.mu')
-rw-r--r--500fake-screen.mu4
1 files changed, 3 insertions, 1 deletions
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