aboutsummaryrefslogtreecommitdiff
path: root/src/splitscreen_duo/menu.py
diff options
context:
space:
mode:
authorZoltan Szabatin <[email protected]>2025-03-05 22:54:24 -0800
committerZoltan Szabatin <[email protected]>2025-03-05 22:54:24 -0800
commita4658d934b535e7a67e64116a3528f1c06a94547 (patch)
treefe71532be790ec68242d4bbcbaed7ea946b82446 /src/splitscreen_duo/menu.py
parentfeat(Input): Debounce buttons (diff)
downloadsplitscreen-duo-a4658d934b535e7a67e64116a3528f1c06a94547.tar.xz
splitscreen-duo-a4658d934b535e7a67e64116a3528f1c06a94547.zip
fix(Input): Controller game input
Diffstat (limited to 'src/splitscreen_duo/menu.py')
-rw-r--r--src/splitscreen_duo/menu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/splitscreen_duo/menu.py b/src/splitscreen_duo/menu.py
index eab3eec..18dcca6 100644
--- a/src/splitscreen_duo/menu.py
+++ b/src/splitscreen_duo/menu.py
@@ -25,7 +25,7 @@ def init_display():
FONT = pygame.font.Font(None, 36)
screen = pygame.display.set_mode(
(WIDTH, HEIGHT) if IS_DEVELOPMENT_MODE else (0, 0),
- # pygame.RESIZABLE if IS_DEVELOPMENT_MODE else pygame.FULLSCREEN,
+ pygame.RESIZABLE if IS_DEVELOPMENT_MODE else pygame.FULLSCREEN,
)
selected_index = 0