--- fontfx.py~ 2004-05-23 18:00:42.000000000 +0200 +++ fontfx.py 2006-08-05 21:16:43.000000000 +0200 @@ -144,7 +144,7 @@ class TextProgress(object): self.bgcolor = bgcolor self.offcolor = [c^40 for c in color] self.notcolor = [c^0xFF for c in color] - self.text = font.render(message, False, [255, 0, 0], self.notcolor) + self.text = font.render(message, 1, [255, 0, 0], self.notcolor) self.text.set_colorkey(1, RLEACCEL) self.outline = self.textHollow(font, message, color) self.bar = pygame.Surface(self.text.get_size()) @@ -155,7 +155,7 @@ class TextProgress(object): self.ratio = width / 100.0 def textHollow(self, font, message, fontcolor): - base = font.render(message, 0, fontcolor, self.notcolor) + base = font.render(message, 1, fontcolor, self.notcolor) size = base.get_width() + 2, base.get_height() + 2 img = pygame.Surface(size, 16) img.fill(self.notcolor)