Debug: Show company ratings in town debug window

This commit is contained in:
Jonathan G Rennison
2020-12-15 17:57:53 +00:00
parent 8b94d92158
commit d818630c34

View File

@@ -846,6 +846,15 @@ class NIHTown : public NIHelper {
seprintf(buffer, lastof(buffer), " %u: %s", st->index, st->GetCachedName());
print(buffer);
}
if (t->have_ratings != 0) {
print(" Company ratings:");
uint8 bit;
FOR_EACH_SET_BIT(bit, t->have_ratings) {
seprintf(buffer, lastof(buffer), " %u: %d", bit, t->ratings[bit]);
print(buffer);
}
}
}
};