diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-12-11 16:52:19 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-12-11 16:52:19 +0200 |
commit | 69579306dd7ff352f7a8df7c5271ea487c62ed11 (patch) | |
tree | 70443d1ed37fb00214d3cd52fd28fe0e3a27b3f8 /src | |
parent | bd21f00f0a1bb23d4503d58a502a796dbe3fd5b4 (diff) | |
download | minetest-69579306dd7ff352f7a8df7c5271ea487c62ed11.tar.gz minetest-69579306dd7ff352f7a8df7c5271ea487c62ed11.tar.bz2 minetest-69579306dd7ff352f7a8df7c5271ea487c62ed11.zip |
Extend load screen maximum time
Diffstat (limited to 'src')
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index a90d1e0c1..13d1e0c7d 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -824,7 +824,7 @@ void the_game( bool got_content = false; { float frametime = 0.033; - const float timeout = 5.0; + const float timeout = 30.0; float time_counter = 0.0; for(;;) { |