mirror of https://github.com/OpenTTD/OpenTTD
(svn r172) -Fix: warning fixes (Tron)
parent
239f16a1e1
commit
c1e464f1ea
|
@ -74,8 +74,8 @@ int CDECL VehicleNumberSorter(const void *a, const void *b)
|
|||
static char _bufcache[64]; // used together with _last_vehicle_idx to hopefully speed up stringsorting
|
||||
int CDECL VehicleNameSorter(const void *a, const void *b)
|
||||
{
|
||||
const SortStruct *cmp1 = (SortStruct*)a;
|
||||
const SortStruct *cmp2 = (SortStruct*)b;
|
||||
const SortStruct *cmp1 = (const SortStruct*)a;
|
||||
const SortStruct *cmp2 = (const SortStruct*)b;
|
||||
const Vehicle *va = DEREF_VEHICLE(cmp1->index);
|
||||
const Vehicle *vb = DEREF_VEHICLE(cmp2->index);
|
||||
char buf1[64] = "\0";
|
||||
|
|
Loading…
Reference in New Issue