(svn r6972) - Codechange: Allow standard ini-file style comments

This commit is contained in:
peter1138 2006-10-28 08:48:31 +00:00
parent bdd86c7da2
commit 5cdeab55f0
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ static IniFile *ini_load(const char *filename)
*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;