about summary refs log tree commit diff stats
path: root/cpp/screen.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-05 20:03:30 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-05 20:03:30 -0700
commitd27034341e69bd8bb5aea06a67d85b6984096faa (patch)
treec2d34e00edd2ace4edc1f5c7d0c94324414be73a /cpp/screen.mu
parent621bbcb0fda324db550207253e78fb590f40d4a8 (diff)
downloadmu-d27034341e69bd8bb5aea06a67d85b6984096faa.tar.gz
1274
Diffstat (limited to 'cpp/screen.mu')
-rw-r--r--cpp/screen.mu14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/screen.mu b/cpp/screen.mu
index 49dbc16e..fc971e11 100644
--- a/cpp/screen.mu
+++ b/cpp/screen.mu
@@ -3,21 +3,21 @@ recipe main [
   switch-to-display
   print-character 0:literal/screen, 97:literal
   1:integer/raw, 2:integer/raw <- cursor-position 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   clear-screen 0:literal/screen
   move-cursor 0:literal/screen, 0:literal/row, 4:literal/column
   print-character 0:literal/screen, 98:literal
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   move-cursor 0:literal/screen, 0:literal/row, 0:literal/column
   clear-line 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   cursor-down 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   cursor-right 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   cursor-left 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   cursor-up 0:literal/screen
-  wait-for-key-from-keyboard
+  wait-for-key 0:literal/keyboard
   return-to-console
 ]