1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Merge pull request #10127 from tupaschoal/fix-10126

Fix #10126: window movement inversed
This commit is contained in:
Duncan
2019-10-21 07:46:02 +01:00
committed by GitHub

View File

@@ -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 };
}
};