[nx-hb] Reverted bad change.

This commit is contained in:
jakcron 2018-06-24 13:16:02 +08:00
parent 030c9070f5
commit 4af9d03542

View file

@ -19,6 +19,12 @@ namespace nx
offset = other.offset;
size = other.size;
}
bool operator==(const sSection& other) const
{
return (offset == other.offset) \
&& (size == other.size);
}
};
AssetHeader();