1
0

Fixed some unsigned int comparison warnings.

This commit is contained in:
Alexander Harkness 2013-11-16 18:55:49 +00:00
parent 755fe9cb21
commit 0150de3688

View File

@ -15,10 +15,10 @@
/// If the generation queue size exceeds this number, a warning will be output
const int QUEUE_WARNING_LIMIT = 1000;
const unsigned int QUEUE_WARNING_LIMIT = 1000;
/// If the generation queue size exceeds this number, chunks with no clients will be skipped
const int QUEUE_SKIP_LIMIT = 500;
const unsigned int QUEUE_SKIP_LIMIT = 500;