Codechange: Check cheap station-facility-filter before expensive in-use-filter. (#12317)

pull/688/head
Peter Nelson 2 months ago committed by GitHub
parent 818a57c9af
commit 0058ebe472
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -260,8 +260,8 @@ protected:
this->stations_per_cargo_type_no_rating = 0;
for (const Station *st : Station::Iterate()) {
if (st->owner == owner || (st->owner == OWNER_NONE && HasStationInUse(st->index, true, owner))) {
if (this->filter.facilities & st->facilities) { // only stations with selected facilities
if ((this->filter.facilities & st->facilities) != 0) { // only stations with selected facilities
if (st->owner == owner || (st->owner == OWNER_NONE && HasStationInUse(st->index, true, owner))) {
bool has_rating = false;
/* Add to the station/cargo counts. */
for (CargoID j = 0; j < NUM_CARGO; j++) {

Loading…
Cancel
Save