From 326d598606abc975ace1b2e44f93ec080fc80412 Mon Sep 17 00:00:00 2001 From: Alan Aguiar Date: Wed, 23 May 2012 07:52:26 +0000 Subject: fix path of images --- (limited to 'horse.py') diff --git a/horse.py b/horse.py index 6e2d5f6..967bdb0 100644 --- a/horse.py +++ b/horse.py @@ -35,10 +35,10 @@ class Game(): # put the horse in the center of the screen self.horse_loc = (100,100) # load the images and convert to screen format - self.grass_image = pygame.image.load('horse/grass.png','grass') + self.grass_image = pygame.image.load('images/grass.png','grass') self.grass_image.convert(screen) self.grass_size = self.grass_image.get_size() - self.horse_image = pygame.image.load('horse/horse.png','horse') + self.horse_image = pygame.image.load('images/horse.png','horse') self.horse_image.convert(screen) self.horse_size = self.horse_image.get_size() # Make a copy for the left-facing image @@ -179,4 +179,4 @@ class Game(): self.moving_left = False def isRunning(self): - return self.game_running \ No newline at end of file + return self.game_running -- cgit v0.9.1