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

fixed indentation for switch statements

This commit is contained in:
Henning Koehler 2017-09-15 23:32:32 +12:00
parent 6037c19b9a
commit de6d4d8367
2 changed files with 140 additions and 140 deletions

View File

@ -513,7 +513,7 @@ std::vector<std::shared_ptr<Bonus>> SpecialtyInfoToBonuses(const SSpecialtyInfo
case 13: //Dragon bonuses (Mutare) case 13: //Dragon bonuses (Mutare)
bonus->type = Bonus::PRIMARY_SKILL; bonus->type = Bonus::PRIMARY_SKILL;
bonus->valType = Bonus::ADDITIVE_VALUE; bonus->valType = Bonus::ADDITIVE_VALUE;
switch (spec.subtype) switch(spec.subtype)
{ {
case 1: case 1:
bonus->subtype = PrimarySkill::ATTACK; bonus->subtype = PrimarySkill::ATTACK;