Fixed some unsigned int comparison warnings.
This commit is contained in:
parent
755fe9cb21
commit
0150de3688
@ -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;
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user