fix
[supertux.git] / src / badguy / bouncing_snowball.cpp
index a704a04..80d9bb6 100644 (file)
@@ -17,7 +17,6 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //  02111-1307, USA.
-
 #include <config.h>
 
 #include "bouncing_snowball.hpp"
@@ -30,7 +29,7 @@ BouncingSnowball::BouncingSnowball(const lisp::Lisp& reader)
   reader.get("x", start_position.x);
   reader.get("y", start_position.y);
   bbox.set_size(31.8, 31.8);
-  sprite = sprite_manager->create("bouncingsnowball");
+  sprite = sprite_manager->create("images/creatures/bouncing_snowball/bouncing_snowball.sprite");
   set_direction = false;
 }
 
@@ -39,7 +38,7 @@ BouncingSnowball::BouncingSnowball(float pos_x, float pos_y, Direction d)
    start_position.x = pos_x;
    start_position.y = pos_y;
    bbox.set_size(31.8, 31.8);
-   sprite = sprite_manager->create("bouncingsnowball");
+   sprite = sprite_manager->create("images/creatures/bouncing_snowball/bouncing_snowball.sprite");
    set_direction = true;
    initial_direction = d;
 }