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

This commit is contained in:
frosch
2010-01-20 17:59:31 +00:00
parent 7de2a5aa27
commit 7b21f03cf1

View File

@@ -232,7 +232,7 @@ struct RefitOption {
FORCEINLINE bool operator != (const RefitOption &other) const 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;
} }
}; };