diff options
| author | ilotterytea <iltsu@alright.party> | 2022-12-10 17:13:59 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-12-10 17:13:59 +0600 |
| commit | 78ac1c403fdbcab42622d149135f387ea053368e (patch) | |
| tree | a49a83b8bd81f0c7e24b7d465fbb8c15fb81d459 /core/src/com/ilotterytea | |
| parent | 8b1f3fb77d12e16fd68821758af65e37288a6f16 (diff) | |
Show the OS arch and version instead of the game name
Diffstat (limited to 'core/src/com/ilotterytea')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screens/MenuScreen.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
