ttd.c
changeset 768 c833f6f2742d
parent 762 ef014856bd88
child 770 c2eacca29601
equal deleted inserted replaced
767:27edbcad701c 768:c833f6f2742d
  1183 			2.) Go through that array, if you find a town that is not blocked for
  1183 			2.) Go through that array, if you find a town that is not blocked for
  1184 				 	one player, but for all others, then give him exclusivity.
  1184 				 	one player, but for all others, then give him exclusivity.
  1185 	*/
  1185 	*/
  1186 }
  1186 }
  1187 
  1187 
  1188 byte covert_currency[] = {
  1188 byte convert_currency[] = {
  1189 	 0,  1, 12,  8,  3,
  1189 	 0,  1, 12,  8,  3,
  1190 	10, 14, 19,  4,  5,
  1190 	10, 14, 19,  4,  5,
  1191 	 9, 11, 13,  6, 17,
  1191 	 9, 11, 13,  6, 17,
  1192 	16, 22, 21,  7, 15,
  1192 	16, 22, 21,  7, 15,
  1193 	18,  2, 20, };
  1193 	18,  2, 20, };
  1194 
  1194 
  1195 // since savegame version 4.2 the currencies are arranged differently
  1195 // since savegame version 4.2 the currencies are arranged differently
  1196 void UpdateCurrencies()
  1196 void UpdateCurrencies()
  1197 {
  1197 {
  1198 	_opt.currency = covert_currency[_opt.currency];
  1198 	_opt.currency = convert_currency[_opt.currency];
  1199 }
  1199 }
  1200 
  1200 
  1201 extern void UpdateOldAircraft();
  1201 extern void UpdateOldAircraft();
  1202 
  1202 
  1203 bool AfterLoadGame(uint version)
  1203 bool AfterLoadGame(uint version)