Merge pull request #968 from duncanspumpkin/fix_track_save

Fix track save
This commit is contained in:
Ted John 2015-03-26 18:41:36 +00:00
commit 67c9c98f58
1 changed files with 2 additions and 2 deletions

View File

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