fix bug in != operator

This commit is contained in:
Andrew Meadows 2014-12-29 10:50:06 -08:00
parent b078850c6a
commit 58f3436d9b

View file

@ -79,7 +79,7 @@ inline bool operator==(const AACube& a, const AACube& b) {
}
inline bool operator!=(const AACube& a, const AACube& b) {
return a.getCorner() != b.getCorner() || a.getScale() == b.getScale();
return a.getCorner() != b.getCorner() || a.getScale() != b.getScale();
}
inline QDebug operator<<(QDebug debug, const AACube& cube) {