Skip to content

Commit

Permalink
edit disclaimer message
Browse files Browse the repository at this point in the history
edit stdout info message
  • Loading branch information
jacob-thompson committed Aug 16, 2024
1 parent b061229 commit a9f0976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pong_arcade/pong.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def set_window_properties(self):
pygame.display.set_icon(icon)

def print_info(self):
print("Thanks for playing Pong! https://github.com/jacob-thompson/pong-arcade")
print("Thank you for playing Pong! https://github.com/jacob-thompson/pong-arcade")

def reset_game(self):
self.p1.set_paddle_pos()
Expand Down Expand Up @@ -348,7 +348,7 @@ def draw_options(self):
self.surface.blit(ctext, ctrect)

def draw_info(self):
disclaimer = "MIT License Copyright (c) 2022 Jacob Alexander Thompson"
disclaimer = "Distributed under the MIT License"

dtext = self.font_tiny.render(disclaimer, 1, self.fg_color)
dtpos = 3, SCREEN_H
Expand Down

0 comments on commit a9f0976

Please sign in to comment.