Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devtools
diff options
context:
space:
mode:
authordavesilver <nibor123@gmail.com>2010-08-03 15:56:39 (GMT)
committer davesilver <nibor123@gmail.com>2010-08-03 15:56:39 (GMT)
commit1b800151e9b1cd837e7ed87c80f59cb32f82477b (patch)
tree8d292a59f93d8f0ff164f297002a4707dfb4b14f /devtools
parentf34a560e73b4070e7d9971c3b3a9368ee00094c9 (diff)
Working on integration
Diffstat (limited to 'devtools')
-rw-r--r--devtools/Dave's Test Kit/DrawableFontObject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/Dave's Test Kit/DrawableFontObject.py b/devtools/Dave's Test Kit/DrawableFontObject.py
index 038d791..425d572 100644
--- a/devtools/Dave's Test Kit/DrawableFontObject.py
+++ b/devtools/Dave's Test Kit/DrawableFontObject.py
@@ -10,7 +10,7 @@ class DrawableFontObject(DrawableObject, pygame.sprite.Sprite):
#self._image = self.textImage
DrawableObject.__init__(self, [self.textImage], '')
- def changeText(self, newText, color=(0,0,0)):
+ def changeText(self, newText, color=(255,255,255)):
self._images[0] = self.font.render(newText, True, color)
self.image = self._images[0]