about summary refs log tree commit diff stats
path: root/screen.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-21 23:53:17 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-21 23:53:17 -0700
commit290fe117c444399495a83266d602e2f4fc3fc099 (patch)
tree2fed3d6cd61048d2a3043be94cff7f9985719f3b /screen.mu
parent6a0f71b9f89df0940a342cd2c91d246cecc18bdf (diff)
downloadmu-290fe117c444399495a83266d602e2f4fc3fc099.tar.gz
1618
Diffstat (limited to 'screen.mu')
-rw-r--r--screen.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.mu b/screen.mu
index 6565b46d..7a2390e8 100644
--- a/screen.mu
+++ b/screen.mu
@@ -4,7 +4,7 @@
 # screens.
 
 recipe main [
-  switch-to-display
+  open-console
   print-character 0:literal/screen, 97:literal, 2:literal/red
   1:number/raw, 2:number/raw <- cursor-position 0:literal/screen
   wait-for-event 0:literal/console
@@ -23,5 +23,5 @@ recipe main [
   wait-for-event 0:literal/console
   cursor-up 0:literal/screen
   wait-for-event 0:literal/console
-  return-to-console
+  close-console
 ]