mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 18:24:55 +00:00
Tons of save-related fixes
This commit is contained in:
@@ -22,6 +22,7 @@ struct SObjectTag
|
||||
operator bool() const { return (id & 0xffffffff) != 0xffffffff; }
|
||||
bool operator!=(const SObjectTag& other) const { return id != other.id; }
|
||||
bool operator==(const SObjectTag& other) const { return id == other.id; }
|
||||
bool operator<(const SObjectTag& other) const { return id < other.id; }
|
||||
SObjectTag() = default;
|
||||
SObjectTag(FourCC tp, ResId rid) : type(tp), id(rid) {}
|
||||
SObjectTag(CInputStream& in)
|
||||
|
||||
Reference in New Issue
Block a user