mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Use old version display style
This commit is contained in:
parent
5d5259ddd2
commit
d54fe8315c
1 changed files with 5 additions and 1 deletions
|
@ -758,7 +758,11 @@ namespace PKHeX.WinForms
|
|||
|
||||
private static string GetProgramTitle()
|
||||
{
|
||||
string version = CurrentProgramVersion.ToString(3);
|
||||
var ver = CurrentProgramVersion;
|
||||
string version = $"{2000+ver.Major:00}{ver.Minor:00}{ver.Build:00}";
|
||||
#if DEBUG
|
||||
version = "d-" + version;
|
||||
#endif
|
||||
return $"PKH{(HaX ? "a" : "e")}X ({version})";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue