summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-12-10 05:14:24 +0600
committerilotterytea <iltsu@alright.party>2022-12-10 05:14:24 +0600
commit640a8c0bee92dae0e2e1b42ffe0551683cfe979e (patch)
tree7511431a23ddf7c2c8cb8a6a045ad97228185dff /core
parent8f84ecd18432949d31d2bbe14f81c6108f733e20 (diff)
smol game info uses small-default
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/screens/MenuScreen.java2
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 7e3e8d8..6c40ecd 100644
--- a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java
+++ b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java
@@ -439,7 +439,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);
+ Label infLabel = new Label(String.format("%s - %s", MaxonConstants.GAME_NAME, MaxonConstants.GAME_VERSION), skin, "small-default");
infLabel.setAlignment(Align.center);
optionsTable.add(infLabel).maxWidth(optionsTable.getWidth() / 2f).row();