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:
@@ -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 };
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user