Skip to content

Commit

Permalink
Update constants.py
Browse files Browse the repository at this point in the history
- removed FPS cap
  • Loading branch information
08BitPixels committed Oct 18, 2024
1 parent 4e1a153 commit e41f7d1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Binary file modified __pycache__/constants.cpython-312.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,4 +895,4 @@ def main():
pygame.display.update()
clock.tick(FPS)

main()
main()

0 comments on commit e41f7d1

Please sign in to comment.