# HG changeset patch # User Simon Cross # Date 1315765740 -7200 # Node ID 62a705f4e8763b0d6ce6d8aeecd3cbe05d7ac5fe # Parent 0c1005c76c873fdb18f07bb8b6653774acc8e601 Blit the background onto the screen, not the screen onto the background. diff -r 0c1005c76c87 -r 62a705f4e876 mamba/level.py --- a/mamba/level.py Sun Sep 11 20:26:59 2011 +0200 +++ b/mamba/level.py Sun Sep 11 20:29:00 2011 +0200 @@ -123,5 +123,5 @@ return (self.entry.tile_pos, self.entry.direction) def draw(self, surface): - self.background.blit(surface, (0, 0)) + surface.blit(self.background, (0, 0)) self.sprites.draw(surface)