From 91347e49a2f8ca488863ff62701b50b0bb7061ee Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Mon, 6 Jun 2022 19:01:25 +0200 Subject: [PATCH] Fix: special disp content --- displays/SpecialDisplay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/displays/SpecialDisplay.py b/displays/SpecialDisplay.py index c88101b..4bcd31e 100644 --- a/displays/SpecialDisplay.py +++ b/displays/SpecialDisplay.py @@ -8,9 +8,9 @@ class SpecialDisplay(Display): self.ballsToPlay = 0 def printScore(self): - super().printContent(str(self.credits).zfill(3) + super().printContent(str(self.credits).zfill(2) + str(self.gameTimeBonus).zfill(3) - + str(self.ballsToPlay).zfill(2)) + + str(self.ballsToPlay).zfill(3)) def printBallsToPlay(self, ballsToPlay): self.ballsToPlay = ballsToPlay