2digit minute/second

as to not show 20:6:2 (20:06:02)

As shown in #233 first picture
This commit is contained in:
Kaphotics 2016-09-05 15:27:02 -07:00
parent 57122d2f9d
commit 36a3757418

View file

@ -20,7 +20,7 @@ namespace PKHeX
public abstract string Filter { get; }
public byte[] Footer { protected get; set; } = new byte[0]; // .dsv
public bool Japanese { protected get; set; }
public string PlayTimeString => $"{PlayedHours}ː{PlayedMinutes}ː{PlayedSeconds}"; // not :
public string PlayTimeString => $"{PlayedHours}ː{PlayedMinutes.ToString("00")}ː{PlayedSeconds.ToString("00")}"; // not :
public bool GetJapanese => Japanese;