[jasper/world] Fix ObjTileRefSet comparison operator
This commit is contained in:
parent
0a11f2db76
commit
9c7ccb5df5
@ -108,10 +108,14 @@ OX_MODEL_END()
|
||||
[[nodiscard]]
|
||||
constexpr bool operator==(ObjTileRefSet const&a, ObjTileRefSet const&b) noexcept {
|
||||
return
|
||||
a.palBank == b.palBank &&
|
||||
a.tilesheetIdx == b.tilesheetIdx &&
|
||||
a.cbbIdx == b.cbbIdx &&
|
||||
a.cbb == b.cbb &&
|
||||
a.tilesheetId == b.tilesheetId &&
|
||||
a.tileCnt == b.tileCnt &&
|
||||
a.frames == b.frames &&
|
||||
a.tilesheetIdx == b.tilesheetIdx;
|
||||
a.intervalMs == b.intervalMs;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user