diff options
author | rubidium <rubidium@openttd.org> | 2008-01-07 14:23:25 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-01-07 14:23:25 +0000 |
commit | b09d957f31b29baa45d30040a12ca3ab553abcb0 (patch) | |
tree | d691be4529ae6acb6f5b7682aec3ff759e342438 /src/newgrf_townname.cpp | |
parent | 71d4004a851536b961fe2c90a1fcae234769f674 (diff) | |
download | openttd-b09d957f31b29baa45d30040a12ca3ab553abcb0.tar.xz |
(svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
Diffstat (limited to 'src/newgrf_townname.cpp')
-rw-r--r-- | src/newgrf_townname.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_townname.cpp b/src/newgrf_townname.cpp index 90855aa27..fdaa66230 100644 --- a/src/newgrf_townname.cpp +++ b/src/newgrf_townname.cpp @@ -10,8 +10,8 @@ #include "openttd.h" #include "table/strings.h" #include "newgrf_townname.h" -#include "string.h" #include "core/alloc_func.hpp" +#include "string_func.h" static GRFTownName *_grf_townnames = NULL; |