# HG changeset patch # User John "Elwin" Edwards # Date 1432835461 14400 # Node ID 23fff8f7b3035e5082e39c44e77f61887244457a # Parent 0c775afe007239c22c76f90fea69ddee1d637435 xrogue: escaping to a shell should not cause a move to the left. This was due to the classic error of forgetting a break statement. diff -r 0c775afe0072 -r 23fff8f7b303 xrogue/command.c --- a/xrogue/command.c Thu May 28 11:08:03 2015 -0400 +++ b/xrogue/command.c Thu May 28 13:51:01 2015 -0400 @@ -189,7 +189,7 @@ count--; switch (ch) { - case '!' : shell(); + case '!' : shell(); break; case KEY_LEFT : do_move(0, -1); when KEY_DOWN : do_move(1, 0); when KEY_UP : do_move(-1, 0);