1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Fix track save at rotation 1 and 3

This commit is contained in:
Duncan Frost
2015-03-26 18:16:32 +00:00
parent fa217c80ae
commit 352d6215ff

View File

@@ -1227,7 +1227,7 @@ int copy_scenery_to_track(uint8** track_pointer){
{
int temp_y = y;
y = x;
x = -y;
x = -temp_y;
}
break;
case 2:
@@ -1238,7 +1238,7 @@ int copy_scenery_to_track(uint8** track_pointer){
{
int temp_x = x;
x = y;
y = -x;
y = -temp_x;
}
break;
}