diff options
| author | oy <Tom_Adams@web.de> | 2011-01-11 00:57:44 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-01-11 00:57:44 +0100 |
| commit | 4a79e575a0adbce71e0a99d7c0824d73906bf06c (patch) | |
| tree | 3374729458bd62b13a8990143f4816e17db2ee8b /src/engine | |
| parent | 8f999837c674b83fb813ef7f394b4c611d08311b (diff) | |
| download | zcatch-4a79e575a0adbce71e0a99d7c0824d73906bf06c.tar.gz zcatch-4a79e575a0adbce71e0a99d7c0824d73906bf06c.zip | |
fixed a compiler warning
Diffstat (limited to 'src/engine')
| -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; |