EnableKeyRepeat while console is open.
[supertux.git] / src / object / rainsplash.cpp
index 2bd2cc9..b4241f6 100644 (file)
@@ -1,4 +1,7 @@
+//  $Id$
+//
 //  SuperTux
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
 //  This program is free software; you can redistribute it and/or
 //  modify it under the terms of the GNU General Public License
 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 //  GNU General Public License for more details.
-// 
+//
 //  You should have received a copy of the GNU General Public License
 //  along with this program; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-//  02111-1307, USA.
+//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+
 #include "rainsplash.hpp"
 #include "sector.hpp"
 
@@ -21,8 +24,8 @@ RainSplash::RainSplash(Vector pos, bool vertical)
 {
   frame = 0;
   position = pos;
-  if (vertical) sprite = sprite_manager->create("rainsplash-vertical");
-  else sprite = sprite_manager->create("rainsplash");
+  if (vertical) sprite = sprite_manager->create("images/objects/particles/rainsplash-vertical.sprite");
+  else sprite = sprite_manager->create("images/objects/particles/rainsplash.sprite");
 }
   
 RainSplash::~RainSplash() {