Assert that the game_config-provided version_info objects are good

This commit is contained in:
Alexander van Gessel 2013-12-05 19:43:10 +01:00
parent a7b99d3d83
commit 62b17ea33f

View file

@ -290,6 +290,10 @@ namespace game_config
sinf.address = server["address"].str();
server_list.push_back(sinf);
}
assert(wesnoth_version.good());
assert(min_savegame_version.good());
assert(test_version.good());
}
void add_color_info(const config &v)