From 2efeed221f647507406a1f28fe95cfb825e8b3ab Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 10 Dec 2022 02:37:25 +0600 Subject: Show the savegame name --- core/src/com/ilotterytea/maxoning/ui/SavegameInfo.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/com/ilotterytea') 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() -- cgit v1.2.3