Skip to content

Commit

Permalink
Updated New Game button titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Malanius committed Jul 6, 2017
1 parent 6bc267e commit 8c6cc23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class MainScreen implements SolUiScreen {
controls.add(tutorialControl);

newGameControl = new SolUiControl(menuLayout.buttonRect(-1, 2), true, gameOptions.getKeyShoot());
newGameControl.setDisplayName("New Game");
newGameControl.setDisplayName("Play Game");
controls.add(newGameControl);

optionsControl = new SolUiControl(isMobile ? null : menuLayout.buttonRect(-1, 3), true, Input.Keys.O);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public class NewGameScreen implements SolUiScreen {

NewGameScreen(MenuLayout menuLayout, GameOptions gameOptions) {
previousControl = new SolUiControl(menuLayout.buttonRect(-1, 1), true, gameOptions.getKeyShoot());
previousControl.setDisplayName("Previous Ship");
previousControl.setDisplayName("Continue");
controls.add(previousControl);

newControl = new SolUiControl(menuLayout.buttonRect(-1, 2), true);
newControl.setDisplayName("New Ship");
newControl.setDisplayName("New game");
controls.add(newControl);

backControl = new SolUiControl(menuLayout.buttonRect(-1, 4), true, gameOptions.getKeyEscape());
Expand Down

0 comments on commit 8c6cc23

Please sign in to comment.