Skip to content

Commit

Permalink
Re-order menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
mimoguz committed Sep 19, 2024
1 parent 6af5dc3 commit e62b3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/kotlin/ogz/tripeaks/screens/GameScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class GameScreen(private val context: Context) : KtxScreen, InputAdapter() {
private val view = GameView(game, viewport.worldWidth)
private val switch = GameScreenSwitch()
private val menuActions = listOf(
Pair(assets[BundleAssets.Bundle]["newGame"], this::onNewGame),
Pair(assets[BundleAssets.Bundle]["restart"], this::onRestartCurrentGame),
Pair(assets[BundleAssets.Bundle]["newGame"], this::onNewGame),
Pair(assets[BundleAssets.Bundle]["options"], this::onShowOptions),
Pair(assets[BundleAssets.Bundle]["statistics"], this::onShowStatistics),
Pair(assets[BundleAssets.Bundle]["exit"], this::onExit),
Expand Down

0 comments on commit e62b3c4

Please sign in to comment.