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

Bumped format version, merged r3457.

This commit is contained in:
Michał W. Urbańczyk 2013-09-13 00:37:09 +00:00
commit 20be1631a6
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ void CTerrainRect::showPath(const SDL_Rect * extRect, SDL_Surface * to)
{-1, 1, 2, 23, -1, 3, 22, 21, 12}
}; //table of magic values TODO meaning, change variable name
for (size_t i=0; i < currentPath->nodes.size()-1; ++i)
for (int i=0; i < (int)currentPath->nodes.size()-1; ++i)
{
const int3 &curPos = currentPath->nodes[i].coord, &nextPos = currentPath->nodes[i+1].coord;
if(curPos.z != adventureInt->position.z)

View File

@ -27,7 +27,7 @@
#include "mapping/CCampaignHandler.h" //for CCampaignState
#include "rmg/CMapGenerator.h" // for CMapGenOptions
const ui32 version = 741;
const ui32 version = 742;
class CConnection;
class CGObjectInstance;