diff --git a/src/openrct2/world/Location.hpp b/src/openrct2/world/Location.hpp index a239feef95..bcdc06ddbd 100644 --- a/src/openrct2/world/Location.hpp +++ b/src/openrct2/world/Location.hpp @@ -659,9 +659,6 @@ template struct RectRange : public CoordsRange RectRange(const T& leftTop, const T& rightBottom) : CoordsRange(leftTop, rightBottom) { - // Make sure it's a rectangle - assert(std::abs(CoordsRange::GetLeft() - CoordsRange::GetRight()) > 0); - assert(std::abs(CoordsRange::GetTop() - CoordsRange::GetBottom()) > 0); } };