mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
style
This commit is contained in:
parent
21ac41bfae
commit
a954241169
|
@ -61,10 +61,8 @@ void CFifo::Update()
|
|||
while(true)
|
||||
{
|
||||
char *pResult = fgets(aBuf, sizeof(aBuf), m_File);
|
||||
if(pResult != NULL)
|
||||
m_pConsole->ExecuteLineFlag(pResult, m_Flag, -1);
|
||||
else
|
||||
break;
|
||||
if(pResult == NULL) break;
|
||||
m_pConsole->ExecuteLineFlag(pResult, m_Flag, -1);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue