From cec747e423c9399ce68dd47bbb5a9c062b884c86 Mon Sep 17 00:00:00 2001 From: cecilkorik Date: Fri, 26 Jan 2007 06:37:55 +0000 Subject: [PATCH] fixed animation artifacts --HG-- branch : vssg --- starmap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/starmap.py b/starmap.py index 93ac4b0..1495c57 100644 --- a/starmap.py +++ b/starmap.py @@ -112,6 +112,7 @@ class StarClass(object): dest = self.frames[frame].get_rect() dest.x = x - (dest.w / 2) + 1 dest.y = y - (dest.h / 2) + 1 + pygame.draw.rect(surf, (0,0,0), dest) surf.blit(self.frames[frame], dest) if id(star.map.selection) == id(star): surf.blit(star.map.selectionpng, dest)