Skip to content

Commit

Permalink
Revert GameOverScreen to HelpScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
antionio committed Nov 30, 2013
1 parent 6f54bb2 commit 628bd6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void renderScreen(float delta) {
public boolean keyDown(int keycode) {
if (keycode == Keys.Y) {
Assets.getGameSound(Assets.SOUND_MUSIC).loop(0.4f);
game.setScreen(new HelpScreen(game, new GameScreen(game)));
game.setScreen(new GameScreen(game));
} else if (keycode == Keys.N) {
game.setScreen(new MenuScreen(game));
}
Expand Down

0 comments on commit 628bd6e

Please sign in to comment.