Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MythicalGuy authored Aug 9, 2022
1 parent 6184dc5 commit 613d3ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ while not done:
bgText = font.render("Use BG img?", True, "white")
colorText = font.render("BG Color:", True, "white")
redText = font.render(str(color[0]), True, "red")
blueText = font.render(str(color[1]), True, "blue")
greenText = font.render(str(color[2]), True, "green")
greenText = font.render(str(color[1]), True, "green")
blueText = font.render(str(color[2]), True, "blue")

#Displaying text and images

Expand All @@ -314,8 +314,8 @@ while not done:
screen.blit(bgText, (215,700))
screen.blit(colorText, (0,770))
screen.blit(redText, (150,770))
screen.blit(blueText, (225,770))
screen.blit(greenText, (300,770))
screen.blit(greenText, (225,770))
screen.blit(blueText, (300,770))

plusClick = screen.blit(plus, (100,740))
minusClick = screen.blit(minus, (50,740))
Expand Down

0 comments on commit 613d3ee

Please sign in to comment.