about summary refs log tree commit diff stats
path: root/103screen.subx
diff options
context:
space:
mode:
Diffstat (limited to '103screen.subx')
-rw-r--r--103screen.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/103screen.subx b/103screen.subx
index f37f994b..5ad27acb 100644
--- a/103screen.subx
+++ b/103screen.subx
@@ -103,9 +103,9 @@ move-cursor:  # row: int, column: int
     # construct directive in buf
     (write %ecx Esc)
     (write %ecx "[")
-    (print-int32-decimal %ecx *(ebp+8))
+    (write-int32-decimal %ecx *(ebp+8))
     (write %ecx ";")
-    (print-int32-decimal %ecx *(ebp+0xc))
+    (write-int32-decimal %ecx *(ebp+0xc))
     (write %ecx "H")
     # flush
     (write-stream 2 %ecx)
@@ -198,12 +198,12 @@ start-color:  # fg: int, bg: int
     # . set fg
     (write %ecx Esc)
     (write %ecx "[38;5;")
-    (print-int32-decimal %ecx *(ebp+8))
+    (write-int32-decimal %ecx *(ebp+8))
     (write %ecx "m")
     # . set bg
     (write %ecx Esc)
     (write %ecx "[48;5;")
-    (print-int32-decimal %ecx *(ebp+0xc))
+    (write-int32-decimal %ecx *(ebp+0xc))
     (write %ecx "m")
     # flush
     (write-stream 2 %ecx)