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.
This commit is contained in:
John "Elwin" Edwards 2015-05-28 13:51:01 -04:00
parent 37cc3eeaba
commit f5bd700b2d

View file

@ -189,7 +189,7 @@ command()
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);