small fixes
authorMarek Moeckel <wansti@gmx.de>
Mon, 26 Sep 2005 10:52:46 +0000 (10:52 +0000)
committerMarek Moeckel <wansti@gmx.de>
Mon, 26 Sep 2005 10:52:46 +0000 (10:52 +0000)
SVN-Revision: 2790

src/object/electrifier.hpp
src/object/player.cpp

index 26d9579..8834cbf 100644 (file)
@@ -21,6 +21,7 @@
 #include "resources.hpp"
 #include "game_object.hpp"
 #include "timer.hpp"
+#include <stdint.h>
 
 //Changes all tiles with the given ID to a new one for a given amount of time, then removes itself
 //Used by the Kugelblitz to electrify water - can be used for other effects, too
index 4242a16..5c48e8c 100644 (file)
@@ -941,5 +941,5 @@ Player::activate()
 
 void Player::walk(float speed)
 {
-  physic.set_velocity_x(WALK_SPEED);
+  physic.set_velocity_x(speed);
 }