Skip to content

Commit b143ef9

Browse files
committed
add a copyright text to the main menu
1 parent f4199f7 commit b143ef9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/gamedata/version.go

+1
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ const SeasonNumber = 1
570570
// - Credits is now a multi-page screen with a larger font
571571
// - Stats & Progress screens now use a larger font
572572
// - Add rand drones build button to the lobby
573+
// - Add a copyright text to the main menu
573574
const (
574575
BuildNumber int = 25
575576
BuildMinorNumber int = 0

src/scenes/menus/mainmenu.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func (c *MainMenuController) initUI() {
122122
buildVersion += "." + strconv.Itoa(gamedata.BuildMinorNumber)
123123
}
124124

125-
buildLabel := fmt.Sprintf("%s %s", d.Get("menu.main.build"), buildVersion)
125+
buildLabel := fmt.Sprintf("%s %s (C) quasilyte tech", d.Get("menu.main.build"), buildVersion)
126126
if buildinfo.Distribution != buildinfo.TagUnknown {
127127
buildLabel += " [" + buildinfo.Distribution + "]"
128128
}

0 commit comments

Comments
 (0)