mirror of
https://github.com/YohannDR/mzm.git
synced 2024-11-26 22:40:42 +00:00
charmap newline minor fix (#21)
This commit is contained in:
parent
c451b65c94
commit
9d5361230d
@ -326,7 +326,7 @@ void CharmapReader::RemoveComments()
|
||||
}
|
||||
else if (m_buffer[pos] == '@')
|
||||
{
|
||||
while (!AcceptNewline() && m_buffer[pos] != 0)
|
||||
while (m_buffer[pos] != '\n' && m_buffer[pos] != 0)
|
||||
m_buffer[pos++] = ' ';
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user