From e46fe34ea0c5125929ccb13b6d0a11f65bd0552d Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:20:38 +0200 Subject: [PATCH] add FPS to draw_level function --- Snake/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snake/main.py b/Snake/main.py index f8c3ce9..2f53839 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -65,7 +65,7 @@ def main(): Move_loop -= 1 # Draw Scene - Screen = window.draw_level(Screen, Matrix, Difficulty, Score, HEIGH, WIDTH) + Screen = window.draw_level(Screen, Matrix, Difficulty, Score, int(clock.get_fps()), HEIGH, WIDTH) pygame.display.flip() # Print current fps