summaryrefslogtreecommitdiff
path: root/vehicle_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-04 20:40:04 +0000
committertron <tron@openttd.org>2005-02-04 20:40:04 +0000
commit63793041263223303f9bd9963101f5f050e8ad78 (patch)
tree08aa6c9e8663023614f86710f85fdd0b8d8783b9 /vehicle_gui.c
parent981b6c1ecd91e994c97244de8a8f672b8df7e86c (diff)
downloadopenttd-63793041263223303f9bd9963101f5f050e8ad78.tar.xz
(svn r1798) GetFoo(i)->index is per definition i, so replace the former with the latter
Diffstat (limited to 'vehicle_gui.c')
-rw-r--r--vehicle_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c
index 62d720061..e88d3a8d4 100644
--- a/vehicle_gui.c
+++ b/vehicle_gui.c
@@ -176,7 +176,7 @@ int CDECL GeneralOwnerSorter(const void *a, const void *b)
*/
int CDECL VehicleUnsortedSorter(const void *a, const void *b)
{
- return GetVehicle((*(const SortStruct*)a).index)->index - GetVehicle((*(const SortStruct*)b).index)->index;
+ return ((const SortStruct*)a)->index - ((const SortStruct*)b)->index;
}
// if the sorting criteria had the same value, sort vehicle by unitnumber