From fb25849b386296cfc2b61dc8b0d30881e7026d34 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Thu, 7 Nov 2024 12:40:25 -0500 Subject: [PATCH] updated pygame requirement to 2.6.1, changed default screen size --- dvd_bounce/main.py | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dvd_bounce/main.py b/dvd_bounce/main.py index 814987d..9a1778c 100644 --- a/dvd_bounce/main.py +++ b/dvd_bounce/main.py @@ -2,7 +2,7 @@ import pygame import dvd_bounce.surfaces as surfaces # Global variables -SCREEN_SIZE = (720, 720) +SCREEN_SIZE = (1920, 1080) FPS = 60 VALID_SURFACES = [ 'dvd_screen' diff --git a/requirements.txt b/requirements.txt index d675c68..81e5291 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pygame~=2.1.3 \ No newline at end of file +pygame~=2.6.1 \ No newline at end of file