about summary refs log tree commit diff
path: root/src/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/shared/console.h2
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;