mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 18:11:31 +02:00
DiscIO/DirectoryBlob: Fix swapped DiscContent comparison operators.
This commit is contained in:
parent
22f7c07caf
commit
6684e26ae2
@ -58,8 +58,8 @@ public:
|
|||||||
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 GetEndOffset() < other.GetEndOffset(); }
|
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 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:
|
private:
|
||||||
u64 m_offset;
|
u64 m_offset;
|
||||||
|
Loading…
Reference in New Issue
Block a user