mirror of https://github.com/OpenTTD/OpenTTD
(svn r23417) -Fix: wrong argument to printf
parent
0e5e8fff12
commit
a37e8ebe43
|
@ -1126,7 +1126,7 @@ static void CheckCaches()
|
||||||
uint i = 0;
|
uint i = 0;
|
||||||
FOR_ALL_COMPANIES(c) {
|
FOR_ALL_COMPANIES(c) {
|
||||||
if (MemCmpT(old_infrastructure.Get(i), &c->infrastructure) != 0) {
|
if (MemCmpT(old_infrastructure.Get(i), &c->infrastructure) != 0) {
|
||||||
DEBUG(desync, 2, "infrastructure cache mismatch: company %i", c->index);
|
DEBUG(desync, 2, "infrastructure cache mismatch: company %i", (int)c->index);
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue