(svn r12460) -Change: rename src/namegen.h to src/namegen_func.h so MSVC can have both files in it's treelist.
--- a/src/namegen.cpp Fri Mar 28 08:53:36 2008 +0000
+++ b/src/namegen.cpp Fri Mar 28 09:15:08 2008 +0000
@@ -5,7 +5,7 @@
#include "stdafx.h"
#include "openttd.h"
#include "debug.h"
-#include "namegen.h"
+#include "namegen_func.h"
#include "string_func.h"
#include "table/namegen.h"
--- a/src/namegen.h Fri Mar 28 08:53:36 2008 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-/* $Id$ */
-
-/** @file namegen.h Town name generator stuff. */
-
-#ifndef NAMEGEN_H
-#define NAMEGEN_H
-
-typedef byte TownNameGenerator(char *buf, uint32 seed, const char *last);
-
-extern TownNameGenerator * const _town_name_generators[];
-
-#endif /* NAMEGEN_H */
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/namegen_func.h Fri Mar 28 09:15:08 2008 +0000
@@ -0,0 +1,12 @@
+/* $Id$ */
+
+/** @file namegen.h Town name generator stuff. */
+
+#ifndef NAMEGEN_H
+#define NAMEGEN_H
+
+typedef byte TownNameGenerator(char *buf, uint32 seed, const char *last);
+
+extern TownNameGenerator * const _town_name_generators[];
+
+#endif /* NAMEGEN_H */
--- a/src/strings.cpp Fri Mar 28 08:53:36 2008 +0000
+++ b/src/strings.cpp Fri Mar 28 09:15:08 2008 +0000
@@ -5,7 +5,7 @@
#include "stdafx.h"
#include "openttd.h"
#include "currency.h"
-#include "namegen.h"
+#include "namegen_func.h"
#include "station.h"
#include "town.h"
#include "screenshot.h"