about summary refs log tree commit diff stats
path: root/baremetal/309stream.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-02-07 15:50:16 -0800
committerKartik Agaram <vc@akkartik.com>2021-02-07 15:50:16 -0800
commit8f34dfd1e09e9e33176bba8f05a2ec229cf3b56f (patch)
tree2a627da04cef70f856a712e9bd56d186c30aa8bc /baremetal/309stream.subx
parentf626421bc4f526c48b789914a3a1e088a9250278 (diff)
downloadmu-8f34dfd1e09e9e33176bba8f05a2ec229cf3b56f.tar.gz
7693 - baremetal: pass background color everywhere
Diffstat (limited to 'baremetal/309stream.subx')
-rw-r--r--baremetal/309stream.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/baremetal/309stream.subx b/baremetal/309stream.subx
index fc727329..56b19272 100644
--- a/baremetal/309stream.subx
+++ b/baremetal/309stream.subx
@@ -98,7 +98,7 @@ $write-to-stream:end:
     c3/return
 
 $write-to-stream:abort:
-    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "write-to-stream: stream full" 3)  # 3=cyan
+    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "write-to-stream: stream full" 3 0)  # 3=cyan
     {
       eb/jump loop/disp8
     }
@@ -151,7 +151,7 @@ $read-from-stream:end:
     c3/return
 
 $read-from-stream:abort:
-    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "read-from-stream: stream empty" 3)  # 3=cyan
+    (draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0 "read-from-stream: stream empty" 3 0)  # 3=cyan
     {
       eb/jump loop/disp8
     }