mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Fix C comment consumption logic
This commit is contained in:
parent
047c282763
commit
05d02e804e
@ -134,7 +134,7 @@ bool CFile::ConsumeComment()
|
||||
if (m_buffer[m_pos] == '/' && m_buffer[m_pos + 1] == '*')
|
||||
{
|
||||
m_pos += 2;
|
||||
while (m_buffer[m_pos] != '*' && m_buffer[m_pos + 1] != '/')
|
||||
while (m_buffer[m_pos] != '*' || m_buffer[m_pos + 1] != '/')
|
||||
{
|
||||
if (m_buffer[m_pos] == 0)
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user