mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #10117 from AdmiralCurtiss/disc-content-comparators
DiscIO/DirectoryBlob: Fix swapped DiscContent comparison operators.
This commit is contained in:
commit
cc84799c7f
1 changed files with 2 additions and 2 deletions
|
@ -58,8 +58,8 @@ public:
|
|||
bool operator!=(const DiscContent& other) const { return !(*this == other); }
|
||||
bool operator<(const DiscContent& other) const { return GetEndOffset() < other.GetEndOffset(); }
|
||||
bool operator>(const DiscContent& other) const { return other < *this; }
|
||||
bool operator<=(const DiscContent& other) const { return !(*this < other); }
|
||||
bool operator>=(const DiscContent& other) const { return !(*this > other); }
|
||||
bool operator<=(const DiscContent& other) const { return !(*this > other); }
|
||||
bool operator>=(const DiscContent& other) const { return !(*this < other); }
|
||||
|
||||
private:
|
||||
u64 m_offset;
|
||||
|
|
Loading…
Add table
Reference in a new issue