summaryrefslogtreecommitdiffstats
path: root/src/CBot/CBotString.cpp
diff options
context:
space:
mode:
authorZaba999 <zaba.marcin@gmail.com>2012-07-20 23:13:02 +0200
committerZaba999 <zaba.marcin@gmail.com>2012-07-20 23:13:02 +0200
commit26f91499473ce0f7738fee0931a337ef19d713de (patch)
tree56bdd4cc7a263614c1800e4d29a8e81695171dd2 /src/CBot/CBotString.cpp
parent1910219518afb26edf7329e0945b9ddba8061a08 (diff)
downloadcolobot-26f91499473ce0f7738fee0931a337ef19d713de.tar.gz
colobot-26f91499473ce0f7738fee0931a337ef19d713de.tar.bz2
colobot-26f91499473ce0f7738fee0931a337ef19d713de.zip
Further translations and doxygen comments.
Diffstat (limited to 'src/CBot/CBotString.cpp')
-rw-r--r--src/CBot/CBotString.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CBot/CBotString.cpp b/src/CBot/CBotString.cpp
index 33e1d04..9d5d257 100644
--- a/src/CBot/CBotString.cpp
+++ b/src/CBot/CBotString.cpp
@@ -23,7 +23,7 @@
#include <algorithm>
//Map is filled with id-string pars that are needed for CBot language parsing
-const std::map<EID, const char const *> CBotString::s_keywordString =
+const std::map<EID, char *> CBotString::s_keywordString =
{
{ID_IF, "if"},
{ID_ELSE, "else"},
@@ -113,9 +113,9 @@ const std::map<EID, const char const *> CBotString::s_keywordString =
{ID_MODULO, "%"},
{ID_POWER, "**"},
{ID_ASSMODULO, "%="},
+ {ID_SUPER, "super"},
{TX_UNDEF, "undefined"},
- {TX_NAN, "not a number"},
- {ID_SUPER, "super"}
+ {TX_NAN, "not a number"}
};
CBotString::CBotString()