Fix special display padding

This commit is contained in:
Jonas Zeunert
2022-06-06 18:31:31 +02:00
parent 9b1c994b44
commit 394f764961

View File

@@ -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):