Got rid of a superfluous debug message
authorChristoph Sommer <mail@christoph-sommer.de>
Wed, 7 Mar 2007 22:27:28 +0000 (22:27 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Wed, 7 Mar 2007 22:27:28 +0000 (22:27 +0000)
SVN-Revision: 4930

src/main.cpp

index 4294f68..3f43c6f 100644 (file)
@@ -342,11 +342,10 @@ static void init_sdl()
 
 static void init_rand()
 {
-  const char *how = config->random_seed? ", user fixed.": ", from time().";
-
   config->random_seed = systemRandom.srand(config->random_seed);
 
-  log_info << "Using random seed " << config->random_seed << how << std::endl;
+  //const char *how = config->random_seed? ", user fixed.": ", from time().";
+  //log_info << "Using random seed " << config->random_seed << how << std::endl;
 }
 
 void init_video()