1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-23 00:28:08 +02:00

MSVS compiler doesn't allow default arguments for Lambdas.

This commit is contained in:
DjWarmonger
2015-03-10 10:06:45 +01:00
parent ec879046ca
commit 8820bc05a9
3 changed files with 12 additions and 12 deletions

View File

@ -5846,6 +5846,6 @@ const CMap * ServerSpellCastEnvironment::getMap() const
bool ServerSpellCastEnvironment::moveHero(ObjectInstanceID hid, int3 dst, ui8 teleporting, PlayerColor asker) const
{
return gh->moveHero(hid, dst, teleporting, asker);
return gh->moveHero(hid, dst, teleporting, false, asker);
}