about summary refs log tree commit diff stats
path: root/081print.mu
diff options
context:
space:
mode:
Diffstat (limited to '081print.mu')
-rw-r--r--081print.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/081print.mu b/081print.mu
index 482d6da8..af49b012 100644
--- a/081print.mu
+++ b/081print.mu
@@ -656,6 +656,6 @@ recipe print-integer screen:address:screen, n:number -> screen:address:screen [
     bg-color <- copy 0/black
   }
   # todo: other bases besides decimal
-  s:address:array:character <- integer-to-decimal-text n
+  s:address:array:character <- to-text n
   screen <- print screen, s, color, bg-color
 ]