This commit is contained in:
David Rice
2026-04-16 18:03:39 +01:00
parent a755e12ea3
commit 624f058275

View File

@@ -203,7 +203,6 @@ def _load_font(size: int, bold: bool = False) -> pygame.font.Font:
def main() -> None:
pygame.init()
pygame.mouse.set_visible(False)
W, H = _args.width, _args.height
@@ -213,6 +212,8 @@ def main() -> None:
screen = pygame.display.set_mode((W, H))
pygame.display.set_caption('JARVIS')
pygame.mouse.set_visible(False)
fonts = {
'large': _load_font(56),
'small': _load_font(18),