about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-21 19:45:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-21 19:45:02 -0700
commit5daa1f06d4c7a30ce1b006c70ba69b405a842cd8 (patch)
tree3c7971211696af5c171bd6d01a9d82594030eeeb
parent9a5e94ce1f44d8a6daec4967c2bd6f57b3dfb0aa (diff)
downloadmu-5daa1f06d4c7a30ce1b006c70ba69b405a842cd8.tar.gz
.
-rw-r--r--shell/sandbox.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/sandbox.mu b/shell/sandbox.mu
index f33927fd..cd20e6b8 100644
--- a/shell/sandbox.mu
+++ b/shell/sandbox.mu
@@ -558,7 +558,7 @@ fn edit-sandbox _self: (addr sandbox), key: byte, globals: (addr global-table),
     clear-screen-cell screen-cell
     var keyboard-cell/esi: (addr handle cell) <- get self, keyboard-var
     rewind-keyboard-cell keyboard-cell  # don't clear keys from before
-    set-cursor-position 0, 0, 0  # for any debug prints during evaluation
+    set-cursor-position real-screen, 0/x, 0/y  # for any debug prints during evaluation
     run data, value, globals, trace, screen-cell, keyboard-cell
     return
   }