From: Skullheadx <94652084+Skullheadx@users.noreply.github.com> Date: Wed, 5 Jul 2023 00:28:35 +0000 (-0400) Subject: fullscreen X-Git-Tag: game~2 X-Git-Url: http://git.skullheadx.com/phil/index.html?a=commitdiff_plain;h=639f22f431bc8b461b4e662a63a6b9b1ede7c4e2;p=fruit-ninja.git fullscreen --- diff --git a/Fruit Ninja.exe b/Fruit Ninja.exe index e027ae0..214d847 100644 Binary files a/Fruit Ninja.exe and b/Fruit Ninja.exe differ diff --git a/setup.py b/setup.py index 08ad0f1..0c2aced 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from functools import cache pygame.init() WIDTH, HEIGHT = pygame.display.Info().current_w, pygame.display.Info().current_h -display = pygame.display.set_mode((WIDTH, HEIGHT)) +display = pygame.display.set_mode((WIDTH, HEIGHT), pygame.FULLSCREEN) window = Window.from_display_module() renderer = Renderer(window) pygame.mouse.set_visible(False)