Reset game credits instead of appending on WML cache refresh

(fixes bug #19292)
This commit is contained in:
Ignacio R. Morelle 2012-01-16 04:58:33 +00:00
parent 2610364691
commit b440c9852f
2 changed files with 5 additions and 0 deletions

View file

@ -30,6 +30,7 @@ Version 1.9.14+svn:
* Miscellaneous and bug fixes:
* Fixed wmlindent writing CRLF end of lines on windows
* Fix tutorial units without xp bar
* Reset game credits instead of appending on WML cache refresh (bug #19292)
Version 1.9.14:
* AI:

View file

@ -97,6 +97,10 @@ std::vector<std::string> get_text(const std::string &campaign)
void set_about(const config &cfg)
{
about_list.clear();
images.clear();
images_default = "";
foreach (const config &about, cfg.child_range("about"))
{
about_list.add_child("about", about);