From 22f82bba2efce41532c5a48f21c5105b3ae08627 Mon Sep 17 00:00:00 2001 From: celestar Date: Tue, 18 Apr 2006 05:16:13 +0000 Subject: [PATCH] (svn r4463) -Codechange. Include vehicle.h directly instead of implicitly via station.h in a number of source files --- ai/trolly/trolly.c | 1 + newgrf.c | 1 + settings_gui.c | 1 + 3 files changed, 3 insertions(+) diff --git a/ai/trolly/trolly.c b/ai/trolly/trolly.c index 8c466c2180..29ae7b9f2b 100644 --- a/ai/trolly/trolly.c +++ b/ai/trolly/trolly.c @@ -34,6 +34,7 @@ #include "../../engine.h" #include "../../gui.h" #include "../../depot.h" +#include "../../vehicle.h" #include "../ai.h" // This function is called after StartUp. It is the init of an AI diff --git a/newgrf.c b/newgrf.c index 63aecab5d7..dda73ad8d7 100644 --- a/newgrf.c +++ b/newgrf.c @@ -19,6 +19,7 @@ #include "bridge.h" #include "economy.h" #include "newgrf_engine.h" +#include "vehicle.h" /* TTDPatch extended GRF format codec * (c) Petr Baudis 2004 (GPL'd) diff --git a/settings_gui.c b/settings_gui.c index 9c00b70e84..a91d076525 100644 --- a/settings_gui.c +++ b/settings_gui.c @@ -19,6 +19,7 @@ #include "town.h" #include "variables.h" #include "settings.h" +#include "vehicle.h" static uint32 _difficulty_click_a; static uint32 _difficulty_click_b;