Skip to content

Commit

Permalink
Fix interact on lever screen
Browse files Browse the repository at this point in the history
  • Loading branch information
antionio committed Nov 27, 2013
1 parent d01bd6b commit 8d3bb1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public boolean keyDown(int keycode) {
} else if (keycode == Keys.RIGHT) {
gameScreen.startScreenQuake(Level.RIGHT);
leverDirection = RIGHT;
} else if (keycode == Keys.CONTROL_LEFT || keycode == Keys.ESCAPE) {
} else if (keycode == Keys.Z || keycode == Keys.ESCAPE) {
Gdx.input.setInputProcessor(gameScreen);
game.setScreen(gameScreen);
}
Expand Down

0 comments on commit 8d3bb1c

Please sign in to comment.