You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
Fix track save at rotation 1 and 3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user