[common] option: prevent ascii filter from eating newlines

This commit is contained in:
Geoffrey McRae 2021-06-07 11:29:17 +10:00
parent 44bff58aa8
commit 21d86dd31d

View File

@ -397,10 +397,6 @@ bool option_load(const char * filename)
continue;
comment = false;
// ignore non-typeable ascii characters
if (c < 32 || c > 126)
continue;
switch(c)
{
case '[':
@ -508,6 +504,10 @@ bool option_load(const char * filename)
// fallthrough
default:
// ignore non-typeable ascii characters
if (c < 32 || c > 126)
continue;
if (expectLine)
{
DEBUG_ERROR("Syntax error on line %d, expected new line", lineno);