Changeset - r4969:3898029125a9
[Not reviewed]
master
0 1 0
peter1138 - 18 years ago 2006-10-28 08:48:31
peter1138@openttd.org
(svn r6972) - Codechange: Allow standard ini-file style comments
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
settings.c
Show inline comments
 
@@ -221,7 +221,7 @@ static IniFile *ini_load(const char *fil
 
		*e = '\0';
 

	
 
		// skip comments and empty lines
 
		if (*s == '#' || *s == '\0') {
 
		if (*s == '#' || *s == ';' || *s == '\0') {
 
			uint ns = comment_size + (e - s + 1);
 
			uint a = comment_alloc;
 
			uint pos;
0 comments (0 inline, 0 general)