Fix: special disp content
This commit is contained in:
@@ -8,9 +8,9 @@ class SpecialDisplay(Display):
|
|||||||
self.ballsToPlay = 0
|
self.ballsToPlay = 0
|
||||||
|
|
||||||
def printScore(self):
|
def printScore(self):
|
||||||
super().printContent(str(self.credits).zfill(3)
|
super().printContent(str(self.credits).zfill(2)
|
||||||
+ str(self.gameTimeBonus).zfill(3)
|
+ str(self.gameTimeBonus).zfill(3)
|
||||||
+ str(self.ballsToPlay).zfill(2))
|
+ str(self.ballsToPlay).zfill(3))
|
||||||
|
|
||||||
def printBallsToPlay(self, ballsToPlay):
|
def printBallsToPlay(self, ballsToPlay):
|
||||||
self.ballsToPlay = ballsToPlay
|
self.ballsToPlay = ballsToPlay
|
||||||
|
|||||||
Reference in New Issue
Block a user