summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CBot/CBotString.cpp2
-rw-r--r--src/ui/key.h2
2 files changed, 2 insertions, 2 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];
}
diff --git a/src/ui/key.h b/src/ui/key.h
index be28b6e..1943f61 100644
--- a/src/ui/key.h
+++ b/src/ui/key.h
@@ -50,7 +50,7 @@ class CKey : public CControl
protected:
bool TestKey(int key);
- int m_key[2];
+ unsigned int m_key[2];
bool m_bCatch;
CApplication *m_app;