diff options
Diffstat (limited to 'games-arcade/pydance/files/pydance-1.0.3-debian.patch')
-rw-r--r-- | games-arcade/pydance/files/pydance-1.0.3-debian.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/games-arcade/pydance/files/pydance-1.0.3-debian.patch b/games-arcade/pydance/files/pydance-1.0.3-debian.patch deleted file mode 100644 index 721a5e34c44b..000000000000 --- a/games-arcade/pydance/files/pydance-1.0.3-debian.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- 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) |