diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index d7fbea6aa..46f8c2310 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -123,6 +123,7 @@ #include <sys/stat.h> +#include <climits> #include <iostream> #include <fstream> @@ -134,7 +135,7 @@ * Tells the max tick value, * setting it back to zero (and start again). */ -static const int MAX_TICK_VALUE = 10000; +static const int MAX_TICK_VALUE = INT_MAX / 2; // TODO: Get rid fo these globals std::string errorMessage; |