about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/tile/main.mu1
-rw-r--r--apps/tui.mu3
2 files changed, 1 insertions, 3 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index a9d62bb4..7c7065fc 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -75,5 +75,4 @@ fn render screen: (addr screen), buf: (addr gap-buffer) {
   move-cursor screen, start-row, start-col
   #
   render-gap-buffer screen, buf
-  flush-stdout
 }
diff --git a/apps/tui.mu b/apps/tui.mu
index 939210c6..a02d8fb0 100644
--- a/apps/tui.mu
+++ b/apps/tui.mu
@@ -28,8 +28,7 @@ fn main -> exit-status/ebx: int {
   enable-screen-type-mode
   print-string 0, "You pressed "
   var x-int/eax: int <- copy x
-  print-int32-hex-to-real-screen x-int
+  print-int32-hex 0, x-int
   print-string 0, "\n"
-  flush-stdout
   exit-status <- copy 0
 }