diff --git a/game.py b/game.py index 0dd5c8c..7661d6f 100644 --- a/game.py +++ b/game.py @@ -128,7 +128,7 @@ class Game(gameUtils.Game): #pygame.draw.line(textSurf, (255, 0, 0), (circleR, circleR), (textSurf.size[0], circleR)) #pygame.draw.line(textSurf, (0, 255, 0), (circleR, circleR), (circleR, textSurf.size[1])) # Rotate the text surface - textSurf = rotateRad(textSurf, rad) + textSurf = rotateRad(textSurf, -rad) # Blit the text surface to the wheel surface self.wheelSurf.blit(textSurf, (0, 0))