Crude hack to slow down the game, use set_game_speed(2.0) in console to run at half...
[supertux.git] / src / scripting / functions.cpp
index 36e4705..e53a837 100644 (file)
@@ -51,6 +51,8 @@
 #include "squirrel_util.hpp"
 #include "time_scheduler.hpp"
 
+extern float game_speed;
+
 namespace Scripting
 {
 
@@ -285,4 +287,9 @@ int rand()
   return systemRandom.rand();
 }
 
+void set_game_speed(float speed)
+{
+  ::game_speed = speed;
+}
+
 }