summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-03-31 09:08:02 +0000
committerpeter1138 <peter1138@openttd.org>2006-03-31 09:08:02 +0000
commitc203fdaafae1208dd14b6e5abdab37fc984821a7 (patch)
treea8a23b7497fc38aa28aa6f12a98d583f04d742c4 /order_gui.c
parente875be1a44404b5783d743aaddf9b2b71125bdf1 (diff)
downloadopenttd-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)
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c2
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) {