src/player_gui.cpp
changeset 8805 7269d54ce5dc
parent 8780 6f3f3ec6c69a
child 8835 4a8e24bfde22
equal deleted inserted replaced
8804:6d7e8b85529e 8805:7269d54ce5dc
   254 };
   254 };
   255 
   255 
   256 /* Association of liveries to livery classes */
   256 /* Association of liveries to livery classes */
   257 static const LiveryClass livery_class[LS_END] = {
   257 static const LiveryClass livery_class[LS_END] = {
   258 	LC_OTHER,
   258 	LC_OTHER,
   259 	LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL,
   259 	LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL,
   260 	LC_ROAD, LC_ROAD,
   260 	LC_ROAD, LC_ROAD,
   261 	LC_SHIP, LC_SHIP,
   261 	LC_SHIP, LC_SHIP,
   262 	LC_AIRCRAFT, LC_AIRCRAFT, LC_AIRCRAFT,
   262 	LC_AIRCRAFT, LC_AIRCRAFT, LC_AIRCRAFT,
   263 	LC_ROAD, LC_ROAD,
   263 	LC_ROAD, LC_ROAD,
   264 };
   264 };
   265 
   265 
   266 /* Number of liveries in each class, used to determine the height of the livery window */
   266 /* Number of liveries in each class, used to determine the height of the livery window */
   267 static const byte livery_height[] = {
   267 static const byte livery_height[] = {
   268 	1,
   268 	1,
   269 	11,
   269 	13,
   270 	4,
   270 	4,
   271 	2,
   271 	2,
   272 	3,
   272 	3,
   273 };
   273 };
   274 
   274