diff options
| author | Zoltan Szabatin <[email protected]> | 2025-03-05 20:05:42 -0800 |
|---|---|---|
| committer | Zoltan Szabatin <[email protected]> | 2025-03-05 20:05:42 -0800 |
| commit | a477eff23a127cc074412af7ec983414563c0935 (patch) | |
| tree | 13a58c2b097d5768638160b15cfc7f7782c2b864 /src/splitscreen_duo/menu.py | |
| parent | chore(Git): Ignore macOS-specific files (diff) | |
| download | splitscreen-duo-a477eff23a127cc074412af7ec983414563c0935.tar.xz splitscreen-duo-a477eff23a127cc074412af7ec983414563c0935.zip | |
fix(Input): Controller button indexes
Diffstat (limited to 'src/splitscreen_duo/menu.py')
| -rw-r--r-- | src/splitscreen_duo/menu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/splitscreen_duo/menu.py b/src/splitscreen_duo/menu.py index 18dcca6..eab3eec 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 |