diff pyntnclick/gamescreen.py @ 625:85153f422522 pyntnclick

Differently yuck get_image().
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 11 Feb 2012 22:00:50 +0200
parents 1c5ef1e02e30
children cc1085432faf
line wrap: on
line diff
--- a/pyntnclick/gamescreen.py	Sat Feb 11 21:52:42 2012 +0200
+++ b/pyntnclick/gamescreen.py	Sat Feb 11 22:00:50 2012 +0200
@@ -264,7 +264,7 @@
     """A placeholder 'Game Over' screen so people can get started easily"""
 
     def setup(self):
-        self.background = self.resource.get_image(('pyntnclick', 'end.png'))
+        self.background = self.resource.get_image('pyntnclick/end.png')
 
     def draw(self, surface):
         surface.blit(self.background, (0, 0))
@@ -274,7 +274,7 @@
     """A placeholder Start screen so people can get started easily"""
 
     def setup(self):
-        self.background = self.resource.get_image(('pyntnclick', 'start.png'))
+        self.background = self.resource.get_image('pyntnclick/start.png')
 
     def draw(self, surface):
         surface.blit(self.background, (0, 0))