1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-15 13:33:36 +02:00

Add missing semicolon after macro usage

This commit is contained in:
Alexander Wilms 2024-01-16 20:18:18 +00:00
parent ccac73fb69
commit 558ead41fe

View File

@ -64,7 +64,7 @@ TStacks CPlayerBattleCallback::battleGetStacks(EStackOwnership whose, bool onlyA
int CPlayerBattleCallback::battleGetSurrenderCost() const
{
RETURN_IF_NOT_BATTLE(-3)
RETURN_IF_NOT_BATTLE(-3);
ASSERT_IF_CALLED_WITH_PLAYER
return CBattleInfoCallback::battleGetSurrenderCost(*getPlayerID());
}