Only check disc init for displaying the time

This commit is contained in:
Matt Nadareski
2021-06-21 21:44:46 -07:00
parent 1715388e29
commit 02193adc51

View File

@@ -72,7 +72,7 @@ namespace RedBookPlayer
private string GenerateDigitString()
{
// If the disc or player aren't initialized, return all '-' characters
if (!PlayableDisc.Initialized || !Player.Initialized)
if (!PlayableDisc.Initialized)
return string.Empty.PadLeft(20, '-');
// Otherwise, take the current time into account