diff options
-rw-r--r-- | settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c index 6ffc63dbf..c0557fa17 100644 --- a/settings.c +++ b/settings.c @@ -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; |