about summary refs log tree commit diff stats
path: root/prototypes/browse/12.mu
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/browse/12.mu')
-rw-r--r--prototypes/browse/12.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/prototypes/browse/12.mu b/prototypes/browse/12.mu
index d3871d40..60d169c8 100644
--- a/prototypes/browse/12.mu
+++ b/prototypes/browse/12.mu
@@ -98,7 +98,7 @@ $update-attributes:check-state: {
           {
             break-if-!=
             # r->current-state == 1 && c == '*' => print c, then normal text
-            print-byte c
+            print-byte-to-screen c
             col <- increment
             reset-formatting
             start-color 0xec, 7  # 236 = darkish gray
@@ -109,7 +109,7 @@ $update-attributes:check-state: {
           {
             break-if-!=
             # r->current-state == 1 && c == '_' => print c, then normal text
-            print-byte c
+            print-byte-to-screen c
             col <- increment
             reset-formatting
             start-color 0xec, 7  # 236 = darkish gray
@@ -122,7 +122,7 @@ $update-attributes:check-state: {
       compare c, 0xa  # newline
       break-if-=  # no need to print newlines
       # print c
-      print-byte c
+      print-byte-to-screen c
       col <- increment
       loop
     }  # $char-loop
@@ -170,6 +170,6 @@ fn dump in: (addr buffered-file) {
   var c/eax: byte <- read-byte-buffered in
   compare c, 0xffffffff  # EOF marker
   break-if-=
-  print-byte c
+  print-byte-to-screen c
   loop
 }