summaryrefslogtreecommitdiff
path: root/src/fontcache.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
commit90acd52f22116bed4b126df0218975d2b54aa6aa (patch)
treefc3e123d733a91dd61b578c69516fae69754c97f /src/fontcache.cpp
parent72c9b35b119884a393f30d8009a53db87b121c78 (diff)
downloadopenttd-90acd52f22116bed4b126df0218975d2b54aa6aa.tar.xz
(svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Diffstat (limited to 'src/fontcache.cpp')
-rw-r--r--src/fontcache.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fontcache.cpp b/src/fontcache.cpp
index efde18eed..7a5813c75 100644
--- a/src/fontcache.cpp
+++ b/src/fontcache.cpp
@@ -5,8 +5,6 @@
#include "stdafx.h"
#include "openttd.h"
#include "debug.h"
-#include "table/sprites.h"
-#include "table/control_codes.h"
#include "spritecache.h"
#include "fontcache.h"
#include "spriteloader/spriteloader.hpp"
@@ -15,8 +13,10 @@
#include "core/alloc_func.hpp"
#include "core/math_func.hpp"
-#ifdef WITH_FREETYPE
+#include "table/sprites.h"
+#include "table/control_codes.h"
+#ifdef WITH_FREETYPE
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H