added new village image for first watch
This commit is contained in:
parent
46fa9ac2f6
commit
61cc6695fb
2 changed files with 6 additions and 0 deletions
BIN
images/terrain/flag-neutral-first_watch.png
Normal file
BIN
images/terrain/flag-neutral-first_watch.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
|
@ -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])
|
||||
|
|
Loading…
Add table
Reference in a new issue