1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-17 01:32:21 +02:00

- fixed seer hut issue (#1073)

- separate archive types in filesystem for lod\vid\snd
This commit is contained in:
Ivan Savenko
2012-09-17 17:25:54 +00:00
parent 2d6f17f3fa
commit 061ed69c63
7 changed files with 65 additions and 58 deletions

View File

@ -3411,11 +3411,10 @@ SDL_Surface * CBattleInterface::imageOfObstacle(const CObstacleInstance &oi) con
return vstd::circularAt(smallForceField[forceField.casterSide]->ourImages, frameIndex).bitmap;
}
case CObstacleInstance::MOAT:
//moat is blitted by SiegeHelper, this shouldn't be called
assert(0);
case CObstacleInstance::MOAT://moat is blitted by SiegeHelper, this shouldn't be called
default:
assert(0);
return nullptr;
}
}