made moving dial more blue

This commit is contained in:
Nicholas Dyer 2023-02-20 00:53:48 -05:00
parent f5c44c9e00
commit b96344a98a
No known key found for this signature in database
GPG Key ID: E4E6388793FA2105

View File

@ -20,7 +20,7 @@ class Dial(pygame.Surface):
pygame.draw.circle(self, (0, 255, 0), self.center, self.dial_size / 2, 5)
if self.moving:
pygame.draw.circle(self, (48, 48, 48), self.center, self.dial_size / 2 * 0.95)
pygame.draw.circle(self, (48, 48, 64), self.center, self.dial_size / 2 * 0.95)
else:
pygame.draw.circle(self, (64, 64, 64), self.center, self.dial_size / 2 * 0.95)