1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-01 00:45:26 +02:00

- build system update

- compile fix for quests (vector can't be used to store const data)
- fixed several "unitialized" warnings
This commit is contained in:
Ivan Savenko
2012-07-06 20:19:54 +00:00
parent 12511d8fee
commit 50e8bc1704
13 changed files with 64 additions and 32 deletions

View File

@ -39,7 +39,7 @@ static const CStack *takeStack(std::vector<const CStack *> &st, int &curside, in
{
const CStack *ret = NULL;
unsigned i, //fastest stack
j; //fastest stack of the other side
j=0; //fastest stack of the other side
for(i = 0; i < st.size(); i++)
if(st[i])
break;