diff options
| author | Zoltan Szabatin <[email protected]> | 2025-03-03 14:32:23 -0800 |
|---|---|---|
| committer | Zoltan Szabatin <[email protected]> | 2025-03-03 14:32:23 -0800 |
| commit | 9e441d26fb6622a7643a735253dbceecd6dfecd3 (patch) | |
| tree | 77adf69541c013293f2b524e22780fa8d3caa58d | |
| parent | feat: Add split mode toggle for debugging (diff) | |
| download | splitscreen-duo-9e441d26fb6622a7643a735253dbceecd6dfecd3.tar.xz splitscreen-duo-9e441d26fb6622a7643a735253dbceecd6dfecd3.zip | |
feat(menu): Resizable window on debug
| -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 9517d3d..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), - 0 if IS_DEVELOPMENT_MODE else pygame.FULLSCREEN, + pygame.RESIZABLE if IS_DEVELOPMENT_MODE else pygame.FULLSCREEN, ) selected_index = 0 |