mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
fixed a compiler warning
This commit is contained in:
parent
8f999837c6
commit
4a79e575a0
|
@ -84,7 +84,7 @@ class CConsole : public IConsole
|
|||
mem_copy(m_aStringStorage, Other.m_aStringStorage, sizeof(m_aStringStorage));
|
||||
m_pArgsStart = Other.m_pArgsStart + Offset;
|
||||
m_pCommand = Other.m_pCommand + Offset;
|
||||
for(int i = 0; i < Other.m_NumArgs; ++i)
|
||||
for(unsigned i = 0; i < Other.m_NumArgs; ++i)
|
||||
m_apArgs[i] = Other.m_apArgs[i] + Offset;
|
||||
}
|
||||
return *this;
|
||||
|
|
Loading…
Reference in a new issue