changeset 12198:b730a91b2202 draft

(svn r16612) -Fix (r16605): ASCII_LETTERSTART should be defined unconditionally (leeus)
author alberth <alberth@openttd.org>
date Sun, 21 Jun 2009 08:35:05 +0000
parents 45ec7770afe0
children 8e20cb543b87
files src/fontcache.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/fontcache.cpp
+++ b/src/fontcache.cpp
@@ -13,6 +13,8 @@
 #include "table/sprites.h"
 #include "table/control_codes.h"
 
+static const int ASCII_LETTERSTART = 32; ///< First printable ASCII letter.
+
 /** Semi-constant for the height of the different sizes of fonts. */
 int _font_height[FS_END];
 
@@ -37,8 +39,6 @@
 	SHADOW_COLOUR = 2,
 };
 
-static const int ASCII_LETTERSTART = 32; ///< First printable ASCII letter.
-
 /** Get the font loaded into a Freetype face by using a font-name.
  * If no appropiate font is found, the function returns an error */
 #ifdef WIN32