Fixed a error induced by the merge: creditsdisplay did not have an update function
This commit is contained in:
parent
7f63ab2357
commit
bb77dab628
|
@ -16,6 +16,9 @@ class CreditsDisplay(Display):
|
|||
self.pad = self.newpad(1, 1)
|
||||
self.ascii_art_displayed = False
|
||||
|
||||
def update(self, game: Game) -> None:
|
||||
return
|
||||
|
||||
def display(self) -> None:
|
||||
self.box.refresh(self.y, self.x, self.height, self.width)
|
||||
self.box.display()
|
||||
|
|
Loading…
Reference in New Issue