summaryrefslogtreecommitdiff
path: root/vehicle_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-08-31 13:37:25 +0000
committertron <tron@openttd.org>2006-08-31 13:37:25 +0000
commit78f9d19d2d37273e6b90a4233d284516f00aa650 (patch)
treeba8b0a0f421a3a0644cfeab69cdbce2554f07d84 /vehicle_gui.c
parent659e09e5bc411bc1238692ace6ff4ed58fc87a58 (diff)
downloadopenttd-78f9d19d2d37273e6b90a4233d284516f00aa650.tar.xz
(svn r6271) Remove stale comment
Diffstat (limited to 'vehicle_gui.c')
-rw-r--r--vehicle_gui.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c
index ed4753109..e749e6418 100644
--- a/vehicle_gui.c
+++ b/vehicle_gui.c
@@ -286,13 +286,6 @@ int ShowAdditionalText(int x, int y, int w, EngineID engine)
}
-/* Variables you need to set before calling this function!
-* 1. (byte)_internal_sort_type: sorting criteria to sort on
-* 2. (bool)_internal_sort_order: sorting order, descending/ascending
-* 3. (uint32)_internal_name_sorter_id: default StringID of the vehicle when no name is set. eg
-* STR_SV_TRAIN_NAME for trains or STR_SV_AIRCRAFT_NAME for aircraft
-*/
-
// if the sorting criteria had the same value, sort vehicle by unitnumber
#define VEHICLEUNITNUMBERSORTER(r, a, b) {if (r == 0) {r = a->unitnumber - b->unitnumber;}}