(svn r9775) -Fix: Remove arbitrary limit on length of NewGRF strings.
authorpeter1138
Fri, 04 May 2007 07:08:35 +0000
changeset 7066 34aab4f48b8f
parent 7065 9932c4f5303a
child 7067 ea55b6046015
(svn r9775) -Fix: Remove arbitrary limit on length of NewGRF strings.
src/newgrf.cpp
--- a/src/newgrf.cpp	Thu May 03 20:31:25 2007 +0000
+++ b/src/newgrf.cpp	Fri May 04 07:08:35 2007 +0000
@@ -2734,8 +2734,6 @@
 
 		if (name_length == 1) {
 			grfmsg(7, "FeatureNewName: Can't add empty name");
-		} else if (name_length > 127) {
-			grfmsg(7, "FeatureNewName: Too long a name (%d)", name_length);
 		} else {
 			grfmsg(8, "FeatureNewName: %d <- %s", id, name);