Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/api/Points.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-06-12 06:51:33 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-06-12 06:51:33 (GMT)
commitacac7a6d68f01ecbcbbe8d280aff7ff87743a7f5 (patch)
tree1cfd2a6c7d28d8de7bb43298b5fb0ba3b484f391 /src/api/Points.py
parent3ff48820a5873acc6349a0970ea92c8e2639cca9 (diff)
change between good and bad points
Diffstat (limited to 'src/api/Points.py')
-rw-r--r--src/api/Points.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/Points.py b/src/api/Points.py
index 2982f78..0cd8d21 100644
--- a/src/api/Points.py
+++ b/src/api/Points.py
@@ -28,10 +28,10 @@ class CPoints(CSprite):
self.loadImage('assets/images/points.png')
fontSurface = self.font.render(str(self.mBads), True, self.fgColor)
- self.image.blit(fontSurface, (50, 15))
+ self.image.blit(fontSurface, (135, 15))
fontSurface = self.font.render(str(self.mGoods), True, self.fgColor)
- self.image.blit(fontSurface, (135, 15))
+ self.image.blit(fontSurface, (50, 15))
self.rect = self.image.get_rect()
self.setImage(self.image)