diff --git a/Source/Core/DiscIO/DirectoryBlob.h b/Source/Core/DiscIO/DirectoryBlob.h index bf8808db8d..1ec5372fa4 100644 --- a/Source/Core/DiscIO/DirectoryBlob.h +++ b/Source/Core/DiscIO/DirectoryBlob.h @@ -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;