From 78ac1c403fdbcab42622d149135f387ea053368e Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 10 Dec 2022 17:13:59 +0600 Subject: Show the OS arch and version instead of the game name --- core/src/com/ilotterytea/maxoning/screens/MenuScreen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/com/ilotterytea/maxoning') diff --git a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java index acd93ff..1938b4c 100644 --- a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java +++ b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java @@ -443,7 +443,7 @@ public class MenuScreen implements Screen { contentTable.add(resetButton).width(optionsTable.getWidth()).padBottom(paddingBottom).row(); // Game info: - Label infLabel = new Label(String.format("%s - %s", MaxonConstants.GAME_NAME, MaxonConstants.GAME_VERSION), skin, "small-default"); + Label infLabel = new Label(String.format("%s-%s - %s", System.getProperty("os.name"), System.getProperty("os.arch"), MaxonConstants.GAME_VERSION), skin, "small-pixeled"); infLabel.setAlignment(Align.center); optionsTable.add(infLabel).maxWidth(optionsTable.getWidth() / 2f).row(); -- cgit v1.2.3