diff src/vehicle_gui.cpp @ 8771:f8f03bc1b482 draft

(svn r12470) -Codechange: split order related types from order.h (and openttd.h) to order_type.h.
author rubidium <rubidium@openttd.org>
date Fri, 28 Mar 2008 16:36:32 +0000 (2008-03-28)
parents f1cf94c69184
children 6280c0d48a6d
line wrap: on
line diff
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -40,6 +40,15 @@
 #include "table/sprites.h"
 #include "table/strings.h"
 
+struct refit_d {
+	int sel;
+	struct RefitOption *cargo;
+	struct RefitList *list;
+	uint length;
+	VehicleOrderID order;
+};
+assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(refit_d));
+
 struct Sorting {
 	Listing aircraft;
 	Listing roadveh;