about summary refs log tree commit diff stats
path: root/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-15 23:12:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-15 23:12:46 -0700
commitc975f29a0c658c4b2c2ac3319988cb9fab9db54c (patch)
tree21c40fb5585e3dc3f473dd2eedfacb498198e9df /shell
parentdf9c71eff0cc7de3fe4feaa2b46d26dfbeb28be4 (diff)
downloadmu-c975f29a0c658c4b2c2ac3319988cb9fab9db54c.tar.gz
.
Diffstat (limited to 'shell')
-rw-r--r--shell/global.mu3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/global.mu b/shell/global.mu
index 693def1b..c05a8274 100644
--- a/shell/global.mu
+++ b/shell/global.mu
@@ -174,7 +174,8 @@ fn render-primitives screen: (addr screen), xmin: int, ymin: int, xmax: int, yma
   y <- increment
   var tmpx/eax: int <- copy xmin
   tmpx <- draw-text-rightward screen, "  cr", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black
-  tmpx <- draw-text-rightward screen, ": screen   # move cursor down and to left margin", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black
+  tmpx <- draw-text-rightward screen, ": screen   ", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black
+  tmpx <- draw-text-rightward screen, "# move cursor down and to left margin", tmpx, xmax, y, 9/fg=blue, 0x12/bg=almost-black
   y <- increment
   var tmpx/eax: int <- copy xmin
   tmpx <- draw-text-rightward screen, "pixel graphics", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black