diff --git a/src/openrct2/world/Location.hpp b/src/openrct2/world/Location.hpp index d454ea7b6a..412d8e4bf4 100644 --- a/src/openrct2/world/Location.hpp +++ b/src/openrct2/world/Location.hpp @@ -69,7 +69,7 @@ struct ScreenCoordsXY const ScreenCoordsXY operator-(const ScreenCoordsXY& rhs) const { - return { rhs.x - x, rhs.y - y }; + return { x - rhs.x, y - rhs.y }; } };