1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-26 22:57:00 +02:00

Fix difficulty level displayed (Normal instead of ormal).

This commit is contained in:
Frank Zago 2009-06-10 00:34:40 +00:00
parent 574780da21
commit 3398941231

View File

@ -1512,10 +1512,11 @@ void MapSel::printFlags()
} }
} }
} }
std::string MapSel::gdiff(std::string ss) std::string MapSel::gdiff(std::string ss)
{ {
std::string ret; std::string ret;
for (int i=2;i<ss.length();i++) for (int i=1;i<ss.length();i++)
{ {
if (ss[i]==' ') if (ss[i]==' ')
break; break;