(svn r13302) -Fix (r13301): GCC doesn't necessarily like what MSVC likes...
authorrubidium
Tue, 27 May 2008 22:02:26 +0000
changeset 10752 332994dbea4e
parent 10751 ebd94f2d6385
child 10753 428f22725618
(svn r13302) -Fix (r13301): GCC doesn't necessarily like what MSVC likes...
src/station_gui.cpp
--- a/src/station_gui.cpp	Tue May 27 21:41:00 2008 +0000
+++ b/src/station_gui.cpp	Tue May 27 22:02:26 2008 +0000
@@ -682,7 +682,7 @@
  */
 struct StationViewWindow : public Window {
 	uint32 cargo;                 ///< Bitmask of cargo types to expand
-	size_t cargo_rows[NUM_CARGO]; ///< Header row for each cargo type
+	uint16 cargo_rows[NUM_CARGO]; ///< Header row for each cargo type
 
 	StationViewWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number)
 	{
@@ -721,7 +721,7 @@
 				cargolist.push_back(CargoData(i, INVALID_STATION, st->goods[i].cargo.Count()));
 
 				/* Set the row for this cargo entry for the expand/hide button */
-				this->cargo_rows[i] = cargolist.size();
+				this->cargo_rows[i] = (uint16)cargolist.size();
 
 				/* Add an entry for each distinct cargo source. */
 				const CargoList::List *packets = st->goods[i].cargo.Packets();