diff --git a/displays/SpecialDisplay.py b/displays/SpecialDisplay.py index cca1b2f..c88101b 100644 --- a/displays/SpecialDisplay.py +++ b/displays/SpecialDisplay.py @@ -8,8 +8,8 @@ class SpecialDisplay(Display): self.ballsToPlay = 0 def printScore(self): - super().printContent(str(self.credits).zfill(2) - + str(self.gameTimeBonus).zfill(2) + super().printContent(str(self.credits).zfill(3) + + str(self.gameTimeBonus).zfill(3) + str(self.ballsToPlay).zfill(2)) def printBallsToPlay(self, ballsToPlay):