mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 14:12:39 +00:00
2digit minute/second
as to not show 20:6:2 (20:06:02) As shown in #233 first picture
This commit is contained in:
parent
57122d2f9d
commit
36a3757418
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue