Reset game credits instead of appending on WML cache refresh
(fixes bug #19292)
This commit is contained in:
parent
2610364691
commit
b440c9852f
2 changed files with 5 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue