src/vehicle.cpp
changeset 7321 f91bdca345e8
parent 7273 6cbc9e849d99
child 7333 e48228e44be8
equal deleted inserted replaced
7320:96d5862ec06a 7321:f91bdca345e8
  2478 }
  2478 }
  2479 
  2479 
  2480 
  2480 
  2481 static Rect _old_vehicle_coords;
  2481 static Rect _old_vehicle_coords;
  2482 
  2482 
  2483 void BeginVehicleMove(Vehicle *v) {
  2483 void BeginVehicleMove(Vehicle *v)
       
  2484 {
  2484 	_old_vehicle_coords.left = v->left_coord;
  2485 	_old_vehicle_coords.left = v->left_coord;
  2485 	_old_vehicle_coords.top = v->top_coord;
  2486 	_old_vehicle_coords.top = v->top_coord;
  2486 	_old_vehicle_coords.right = v->right_coord;
  2487 	_old_vehicle_coords.right = v->right_coord;
  2487 	_old_vehicle_coords.bottom = v->bottom_coord;
  2488 	_old_vehicle_coords.bottom = v->bottom_coord;
  2488 }
  2489 }