equal
deleted
inserted
replaced
1770 case 0x0A: // Tile acceptance |
1770 case 0x0A: // Tile acceptance |
1771 case 0x0B: |
1771 case 0x0B: |
1772 case 0x0C: { |
1772 case 0x0C: { |
1773 uint16 acctp = grf_load_word(&buf); |
1773 uint16 acctp = grf_load_word(&buf); |
1774 tsp->accepts_cargo[prop - 0x0A] = GetCargoTranslation(GB(acctp, 0, 8), _cur_grffile); |
1774 tsp->accepts_cargo[prop - 0x0A] = GetCargoTranslation(GB(acctp, 0, 8), _cur_grffile); |
1775 tsp->acceptance[prop - 0x0A] = GetCargoTranslation(GB(acctp, 8, 8), _cur_grffile); |
1775 tsp->acceptance[prop - 0x0A] = GB(acctp, 8, 8); |
1776 } break; |
1776 } break; |
1777 |
1777 |
1778 case 0x0D: // Land shape flags |
1778 case 0x0D: // Land shape flags |
1779 tsp->slopes_refused = (Slope)grf_load_byte(&buf); |
1779 tsp->slopes_refused = (Slope)grf_load_byte(&buf); |
1780 break; |
1780 break; |