(svn r18868) -Fix [FS#3547](r18776): Wrong comparator.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
frosch 15 years ago
parent 36bb4e19ae
commit 107ad9bfe1

@ -232,7 +232,7 @@ struct RefitOption {
FORCEINLINE bool operator != (const RefitOption &other) const
{
return other.cargo != this->cargo || other.subtype != this->subtype;
return other.cargo != this->cargo || other.value != this->value;
}
};

Loading…
Cancel
Save