diff options
| -rw-r--r-- | src/engine/shared/console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/shared/console.h b/src/engine/shared/console.h index 30f53cf7..a276751a 100644 --- a/src/engine/shared/console.h +++ b/src/engine/shared/console.h @@ -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; |