summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 75847a2..1588dbd 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -20,7 +20,7 @@ int main()
while(true)
{
char c = getch();
- Location l = cursor.getLocation();
+ l = cursor.getLocation();
if (c == 'h')
l.y = l.y-1;
else if (c == 'l')
@@ -32,7 +32,9 @@ int main()
else if (c == 'q')
break;
else if (c == 'p')
- paused = !paused;
+ paused = !paused;
+ else if (c == 'o')
+ L.order(l);
cursor.move(l);
if (!paused)