diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-20 16:42:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-20 16:42:35 -0700 |
commit | f08a13e1f709c69375202e8ecafb337a24abed45 (patch) | |
tree | a196d5d47b5865545f1df83a2074254336592bca | |
parent | 1fe25232d20bf7b1f969c5fe91344d5990a945fc (diff) | |
download | mu-f08a13e1f709c69375202e8ecafb337a24abed45.tar.gz |
1113
-rw-r--r-- | cpp/070console | 6 | ||||
-rw-r--r-- | cpp/console.mu | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/070console b/cpp/070console index 54206ed9..c8a51f9d 100644 --- a/cpp/070console +++ b/cpp/070console @@ -24,11 +24,11 @@ case RETRO_MODE: { } :(before "End Primitive Recipe Declarations") -WAIT_FOR_KEY, +WAIT_FOR_KEY_FROM_KEYBOARD, :(before "End Primitive Recipe Numbers") -Recipe_number["wait-for-key"] = WAIT_FOR_KEY; +Recipe_number["wait-for-key-from-keyboard"] = WAIT_FOR_KEY_FROM_KEYBOARD; :(before "End Primitive Recipe Implementations") -case WAIT_FOR_KEY: { +case WAIT_FOR_KEY_FROM_KEYBOARD: { getch(); break; } diff --git a/cpp/console.mu b/cpp/console.mu index 20b54b85..a25f94cb 100644 --- a/cpp/console.mu +++ b/cpp/console.mu @@ -1,5 +1,5 @@ recipe main [ cursor-mode 0:literal/screen - wait-for-key + wait-for-key-from-keyboard retro-mode 0:literal/screen ] |