1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Replace LocationXYZ32

This commit is contained in:
Michael Steenbeek
2018-02-16 09:42:36 +01:00
parent ec79334e0c
commit 359e9ecf2d
5 changed files with 4 additions and 8 deletions

View File

@@ -4049,7 +4049,7 @@ static void translate_3d_to_2d(sint32 rotation, sint32 *x, sint32 *y)
*y = ry;
}
LocationXY32 translate_3d_to_2d_with_z(sint32 rotation, LocationXYZ32 pos)
LocationXY32 translate_3d_to_2d_with_z(sint32 rotation, CoordsXYZ pos)
{
LocationXY32 result;
switch (rotation & 3) {