Fixed a error induced by the merge: creditsdisplay did not have an update function

This commit is contained in:
eichhornchen 2021-01-05 10:49:04 +01:00
parent 7f63ab2357
commit bb77dab628
1 changed files with 3 additions and 0 deletions

View File

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