summaryrefslogtreecommitdiffstats
path: root/src/CBot
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-09-22 11:48:41 +0200
committererihel <erihel@gmail.com>2012-09-22 11:48:41 +0200
commit37e7c73f439c0d8cbfd0f1c02b7ef5916fd748ae (patch)
treeb8a0fbe82a8903f9d6591e0cd464e4c7a5c61fa1 /src/CBot
parent0ff419560d5a567afaa0294968cc1f5b5e6b597b (diff)
downloadcolobot-37e7c73f439c0d8cbfd0f1c02b7ef5916fd748ae.tar.gz
colobot-37e7c73f439c0d8cbfd0f1c02b7ef5916fd748ae.tar.bz2
colobot-37e7c73f439c0d8cbfd0f1c02b7ef5916fd748ae.zip
* Removed some warnings
Diffstat (limited to 'src/CBot')
-rw-r--r--src/CBot/CBotString.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CBot/CBotString.cpp b/src/CBot/CBotString.cpp
index 84f9ca2..e52cd05 100644
--- a/src/CBot/CBotString.cpp
+++ b/src/CBot/CBotString.cpp
@@ -188,7 +188,7 @@ CBotString CBotString::Right(int nCount) const
if ( i < 0 ) i = 0;
int j;
- for (int j = 0 ; i < m_lg && i < 1999; ++i)
+ for (j = 0 ; i < m_lg && i < 1999; ++i)
{
chain[j++] = m_ptr[i];
}