diff options
author | peter1138 <peter1138@openttd.org> | 2006-03-31 09:08:02 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-03-31 09:08:02 +0000 |
commit | c203fdaafae1208dd14b6e5abdab37fc984821a7 (patch) | |
tree | a8a23b7497fc38aa28aa6f12a98d583f04d742c4 | |
parent | e875be1a44404b5783d743aaddf9b2b71125bdf1 (diff) | |
download | openttd-c203fdaafae1208dd14b6e5abdab37fc984821a7.tar.xz |
(svn r4195) - Codechange: Initialize order variables to avoid a compiler warning. These are unused anyway... (smells of r3476-7, but not the same)
-rw-r--r-- | order_gui.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/order_gui.c b/order_gui.c index a414bba8c..399cf0fe0 100644 --- a/order_gui.c +++ b/order_gui.c @@ -191,6 +191,8 @@ static void DrawOrdersWindow(Window *w) static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile) { Order order; + order.next = NULL; + order.index = 0; // check depot first if (_patches.gotodepot) { |