From e41f7d1a4ef7a451ebf4b5df3a2172f3ac91afeb Mon Sep 17 00:00:00 2001 From: Rohan Garner <161069703+08BitPixels@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:48:44 +0100 Subject: [PATCH] Update constants.py - removed FPS cap --- README.md | 2 +- __pycache__/constants.cpython-312.pyc | Bin 523 -> 523 bytes constants.py | 2 +- main.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d58be3..d34b473 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ _Built on Python using the PyGame module._ ### To Install Correctly Go to the _Releases_ Page and download the .exe file in the latest release. -(DON'T download the code itself) +(DON'T download the code itself) \ No newline at end of file diff --git a/__pycache__/constants.cpython-312.pyc b/__pycache__/constants.cpython-312.pyc index 6144f653c785deab2f27c9930d8cb9fb4a5aa6a3..10f382517540a231302c4f093fecaab0d49e46b0 100644 GIT binary patch delta 33 ncmeBX>1N?Q&CAQh00c}Eh0-M_@|H6)Y-|l;WMrRwgV7iOc5?@Y delta 33 ncmeBX>1N?Q&CAQh00i-Ag6Yx|dCM6mY-|l;WaONDgV7iOfX)a@ diff --git a/constants.py b/constants.py index 8c798ff..480a2af 100644 --- a/constants.py +++ b/constants.py @@ -2,7 +2,7 @@ WIDTH, HEIGHT = 1080, 720 CENTRE_X = WIDTH / 2 CENTRE_Y = HEIGHT / 2 -FPS = 144 +FPS = 0 # Audio MUSIC_VOL = 0.25 diff --git a/main.py b/main.py index 42cc8db..90d3b4b 100644 --- a/main.py +++ b/main.py @@ -895,4 +895,4 @@ def main(): pygame.display.update() clock.tick(FPS) -main() +main() \ No newline at end of file