added new village image for first watch

This commit is contained in:
Dave White 2003-11-25 19:36:02 +00:00
parent 46fa9ac2f6
commit 61cc6695fb
2 changed files with 6 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -81,6 +81,12 @@ int main(int argc, char** argv)
const font::manager font_manager;
std::vector<std::string> terrain_names;
const std::vector<gamemap::TERRAIN> terrains = map.get_terrain_precedence();
for(std::vector<gamemap::TERRAIN>::const_iterator t = terrains.begin(); t != terrains.end(); ++t) {
terrain_names.push_back(map.terrain_name(*t));
}
std::cerr << "starting for(;;)\n";
for(;;) {
if(key[SDLK_ESCAPE])