]> git.jsancho.org Git - lugaru.git/commitdiff
Obtain float max value from std::numeric_limits
authorAlexander Monakov <amonakov@gmail.com>
Thu, 5 May 2011 04:03:41 +0000 (08:03 +0400)
committerAlexander Monakov <amonakov@gmail.com>
Thu, 5 May 2011 04:03:41 +0000 (08:03 +0400)
Source/GameTick.cpp

index b30d4f1d04b6dbe2e6b6507b9bcefac67f759751..58a3bde7c19f1def242f24b06a1f1499db0a8298 100644 (file)
@@ -27,6 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include <direct.h>
 #endif
 
+#include <limits>
 #include <ctime>
 #include "Game.h"
 #include "openal_wrapper.h"
@@ -431,7 +432,7 @@ static void ch_size(Game *game, const char *args)
 static int find_closest()
 {
   int closest = 0;
-  float closestdist = 1.0/0.0;
+  float closestdist = std::numeric_limits<float>::max();
 
   for (int i = 1; i < numplayers; i++) {
     float distance;