summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-01-13 01:21:35 +0000
committerrubidium <rubidium@openttd.org>2008-01-13 01:21:35 +0000
commitd4e6a6bf57216b39745b61971141e088e15e2d0d (patch)
treefc3e123d733a91dd61b578c69516fae69754c97f /src/newgrf.cpp
parenta78d73805f467d3ced0a70a1758435498fd1dbac (diff)
downloadopenttd-d4e6a6bf57216b39745b61971141e088e15e2d0d.tar.xz
(svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index d1006667b..df6ab668d 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -15,12 +15,10 @@
#include "sprite.h"
#include "newgrf.h"
#include "variables.h"
-#include "table/strings.h"
#include "bridge.h"
#include "town.h"
#include "newgrf_engine.h"
#include "newgrf_text.h"
-#include "table/sprites.h"
#include "fontcache.h"
#include "currency.h"
#include "landscape.h"
@@ -28,15 +26,12 @@
#include "newgrf_house.h"
#include "newgrf_sound.h"
#include "newgrf_spritegroup.h"
-#include "table/town_land.h"
#include "cargotype.h"
#include "industry.h"
#include "newgrf_canal.h"
-#include "table/build_industry.h"
#include "newgrf_commons.h"
#include "newgrf_townname.h"
#include "newgrf_industries.h"
-#include "table/landscape_sprite.h"
#include "gfxinit.h"
#include "fios.h"
#include "rail.h"
@@ -49,6 +44,12 @@
#include "road_func.h"
#include "player_base.h"
+#include "table/strings.h"
+#include "table/sprites.h"
+#include "table/town_land.h"
+#include "table/build_industry.h"
+#include "table/landscape_sprite.h"
+
/* TTDPatch extended GRF format codec
* (c) Petr Baudis 2004 (GPL'd)
* Changes by Florian octo Forster are (c) by the OpenTTD development team.