about summary refs log tree commit diff stats
path: root/signatures.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-07 16:37:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-07 16:37:10 -0800
commit3ca102f0152f23718b72b35207e9272daf7514c3 (patch)
tree6ce6e0cabb4eecd46dd2a47e69c2ec49054139e9 /signatures.mu
parentad2dd26ed49a5eb721773b376c3f28d1c8dcfcc9 (diff)
downloadmu-3ca102f0152f23718b72b35207e9272daf7514c3.tar.gz
tutorial: improve task 14 based on sejo's feedback
Diffstat (limited to 'signatures.mu')
-rw-r--r--signatures.mu1
1 files changed, 0 insertions, 1 deletions
diff --git a/signatures.mu b/signatures.mu
index c95af22f..c867ff32 100644
--- a/signatures.mu
+++ b/signatures.mu
@@ -142,7 +142,6 @@ sig move-cursor-right screen: (addr screen)
 sig move-cursor-up screen: (addr screen)
 sig move-cursor-down screen: (addr screen)
 sig move-cursor-to-left-margin-of-next-line screen: (addr screen)
-sig draw-code-point-at-cursor screen: (addr screen), c: code-point, color: int, background-color: int
 sig draw-code-point-at-cursor-over-full-screen screen: (addr screen), c: code-point, color: int, background-color: int
 sig draw-text-rightward screen: (addr screen), text: (addr array byte), x: int, xmax: int, y: int, color: int, background-color: int -> _/eax: int
 sig draw-stream-rightward screen: (addr screen), stream: (addr stream byte), x: int, xmax: int, y: int, color: int, background-color: int -> _/eax: int