(svn r5895) Remove dead code

This commit is contained in:
tron 2006-08-14 20:37:15 +00:00
parent ba14683912
commit c16d77874e
2 changed files with 0 additions and 15 deletions

View File

@ -265,11 +265,6 @@ int ShowAdditionalText(int x, int y, int w, EngineID engine)
return 10; return 10;
} }
/************ Sorter functions *****************/
int CDECL GeneralOwnerSorter(const void *a, const void *b)
{
return (*(const SortStruct*)a).owner - (*(const SortStruct*)b).owner;
}
/* Variables you need to set before calling this function! /* Variables you need to set before calling this function!
* 1. (byte)_internal_sort_type: sorting criteria to sort on * 1. (byte)_internal_sort_type: sorting criteria to sort on

View File

@ -19,19 +19,10 @@ void ResortVehicleLists(void);
void BuildVehicleList(struct vehiclelist_d* vl, int type, PlayerID, StationID); void BuildVehicleList(struct vehiclelist_d* vl, int type, PlayerID, StationID);
void SortVehicleList(struct vehiclelist_d *vl); void SortVehicleList(struct vehiclelist_d *vl);
int CDECL GeneralOwnerSorter(const void *a, const void *b);
#define PERIODIC_RESORT_DAYS 10 #define PERIODIC_RESORT_DAYS 10
#define SORT_BY_UNSORTED 0 #define SORT_BY_UNSORTED 0
extern const StringID _vehicle_sort_listing[]; extern const StringID _vehicle_sort_listing[];
enum VehicleSortTypes {
VEHTRAIN = 0,
VEHROAD = 1,
VEHSHIP = 2,
VEHAIRCRAFT = 3
};
typedef struct Listing { typedef struct Listing {
bool order; // Ascending/descending? bool order; // Ascending/descending?
byte criteria; // Sorting criteria byte criteria; // Sorting criteria
@ -64,5 +55,4 @@ void ChangeVehicleViewWindow(const Vehicle *from_v, const Vehicle *to_v);
int ShowAdditionalText(int x, int y, int w, EngineID engine_number); int ShowAdditionalText(int x, int y, int w, EngineID engine_number);
#endif /* VEHICLE_GUI_H */ #endif /* VEHICLE_GUI_H */