diff --git a/projects/build-pong-with-pygame/build-pong-with-pygame.mdx b/projects/build-pong-with-pygame/build-pong-with-pygame.mdx index 3d2d1877..e8b44b41 100644 --- a/projects/build-pong-with-pygame/build-pong-with-pygame.mdx +++ b/projects/build-pong-with-pygame/build-pong-with-pygame.mdx @@ -238,7 +238,6 @@ if not started: if event.key == pygame.K_SPACE: started = True - continue ``` **NOTE**: when looking at the next part of the code, please keep in mind that that PyGame coordinates place (0, 0) at the top-left corner of the screen, and that increasing x means going to the right, and increasing y means going down.