mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
Compilation fixes for VC10.
Changes towards hot-seat support.
This commit is contained in:
@@ -469,8 +469,8 @@ void BattleStackMoved::applyFirstCl( CClient *cl )
|
||||
|
||||
void BattleStackAttacked::applyCl( CClient *cl )
|
||||
{
|
||||
std::set<BattleStackAttacked> bsa;
|
||||
bsa.insert(*this);
|
||||
std::vector<BattleStackAttacked> bsa;
|
||||
bsa.push_back(*this);
|
||||
|
||||
INTERFACE_CALL_IF_PRESENT(GS(cl)->curB->side1,battleStacksAttacked,bsa);
|
||||
INTERFACE_CALL_IF_PRESENT(GS(cl)->curB->side2,battleStacksAttacked,bsa);
|
||||
|
||||
Reference in New Issue
Block a user