mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-10 13:25:53 +00:00
Merge pull request #114 from lioncash/model
CModel: Implement CModelFlags' operator!= in terms of operator==
This commit is contained in:
commit
83c0ad1e72
@ -58,10 +58,7 @@ struct CModelFlags {
|
||||
x4_color == other.x4_color;
|
||||
}
|
||||
|
||||
bool operator!=(const CModelFlags& other) const {
|
||||
return x0_blendMode != other.x0_blendMode || x1_matSetIdx != other.x1_matSetIdx || x2_flags != other.x2_flags ||
|
||||
x4_color != other.x4_color;
|
||||
}
|
||||
bool operator!=(const CModelFlags& other) const { return !operator==(other); }
|
||||
};
|
||||
|
||||
/* urde addition: doesn't require hacky stashing of
|
||||
|
Loading…
x
Reference in New Issue
Block a user