Loading

Paste #pap2lf9xm

  1.                     // subtype not sub_mode
  2.                     uint8 road_subtype = GetRoadSubtype(tile);
  3.                     uint8 tram_subtype = GetTramSubtype(tile);
  4.                     if (sub_mode == 1) {
  5.                         // road
  6.                         if (road_subtype != 0) break;
  7.                     }
  8.                     if (sub_mode == 2) {
  9.                         // tram
  10.                         if (tram_subtype != 0) break;
  11.                     }

Comments