about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-20 16:34:15 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-20 16:39:56 -0700
commit1fe25232d20bf7b1f969c5fe91344d5990a945fc (patch)
treef27799c3764cfa8cd1dc170c30e5787a898cdbcf /cpp
parent54d48b25a08b5b238371b2d1bd0f594dad8dbeb9 (diff)
downloadmu-1fe25232d20bf7b1f969c5fe91344d5990a945fc.tar.gz
1112
Diffstat (limited to 'cpp')
-rw-r--r--cpp/070console6
-rw-r--r--cpp/console.mu2
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/070console b/cpp/070console
index 18faffb6..54206ed9 100644
--- a/cpp/070console
+++ b/cpp/070console
@@ -4,11 +4,11 @@
 #include<ncurses.h>
 
 :(before "End Primitive Recipe Declarations")
-CONSOLE_MODE,
+CURSOR_MODE,
 :(before "End Primitive Recipe Numbers")
-Recipe_number["console-mode"] = CONSOLE_MODE;
+Recipe_number["cursor-mode"] = CURSOR_MODE;
 :(before "End Primitive Recipe Implementations")
-case CONSOLE_MODE: {
+case CURSOR_MODE: {
   initscr();
   break;
 }
diff --git a/cpp/console.mu b/cpp/console.mu
index 04eee3a2..20b54b85 100644
--- a/cpp/console.mu
+++ b/cpp/console.mu
@@ -1,5 +1,5 @@
 recipe main [
-  console-mode 0:literal/screen
+  cursor-mode 0:literal/screen
   wait-for-key
   retro-mode 0:literal/screen
 ]