diff options
| author | ilotterytea <iltsu@alright.party> | 2022-12-10 02:37:25 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-12-10 02:37:25 +0600 |
| commit | 2efeed221f647507406a1f28fe95cfb825e8b3ab (patch) | |
| tree | fc48399fc1e98bfff82c6c079551657801a8b4ce /core | |
| parent | 7a3c11257ca11fcb040d81c9ec8613e2b40df293 (diff) | |
Show the savegame name
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt b/core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt index 2b8831f..6a9d0a9 100644 --- a/core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt +++ b/core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt @@ -26,7 +26,7 @@ class SavegameInfo( this.height = 324f this.align(Align.top) - val title = Label(if (sav != null) "Save ${savId + 1}" else "New Game", skin, "with_background") + val title = Label(if (sav != null) "Save ${savId + 1} (${sav.name})" else "New Game", skin, "with_background") this.add(title).width(506f).pad(6f).row() val content = Table() |
