aboutsummaryrefslogtreecommitdiff
path: root/games/robots/move.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/robots/move.c')
-rw-r--r--games/robots/move.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/robots/move.c b/games/robots/move.c
index 793644407442..8da28376873f 100644
--- a/games/robots/move.c
+++ b/games/robots/move.c
@@ -169,13 +169,13 @@ teleport:
refresh();
flush_in();
goto ret;
- case CTRL(L):
+ case CTRL('L'):
wrefresh(curscr);
break;
case EOF:
break;
default:
- putchar(CTRL(G));
+ putchar(CTRL('G'));
reset_count();
fflush(stdout);
break;
@@ -240,7 +240,7 @@ int dy, dx;
refresh();
}
else {
- putchar(CTRL(G));
+ putchar(CTRL('G'));
reset_count();
}
return FALSE;