Fix bug #11386 on SVN trunk (1.5.0+svn).

This commit is contained in:
Ignacio R. Morelle 2008-05-07 23:39:03 +00:00
parent 3626ba999c
commit 3eea235180
3 changed files with 7 additions and 0 deletions

View file

@ -25,6 +25,8 @@ Version 1.5.0+svn:
* WML engine:
* titlescreen is now randomly loaded
* miscellaneous and bug fixes:
* fixed issues with campaign info in non-compressed saved games
(bug #11386)
* Implemented the option to use the mouse selection clipboard in X11
the new widget library also uses it.
* Removed bug introduced in 1.5.0 that allowed use of :debug commands during

View file

@ -23,6 +23,10 @@ Version 1.5.0+svn:
* Terrains
* Removed duplicate terrain type in unit help
* Miscellaneous and bug fixes
* Fixed load-games dialog not displaying correct campaign info for
non-compressed saves
Version 1.5.0:
* Graphics
* Terrains can be rendered in front of units again.

View file

@ -1014,6 +1014,7 @@ void extract_summary_from_config(config& cfg_save, config& cfg_summary)
cfg_summary["snapshot"] = has_snapshot ? "yes" : "no";
cfg_summary["label"] = cfg_save["label"];
cfg_summary["campaign"] = cfg_save["campaign"];
cfg_summary["campaign_type"] = cfg_save["campaign_type"];
cfg_summary["scenario"] = cfg_save["scenario"];
cfg_summary["campaign"] = cfg_save["campaign"];