Author: esr
Date: Thu May  7 18:15:11 2009
New Revision: 35472

URL: http://svn.gna.org/viewcvs/wesnoth?rev=35472&view=rev
Log:
Address bug #13437.

Modified:
    trunk/src/dialogs.cpp
    trunk/src/unit.cpp

Modified: trunk/src/dialogs.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/dialogs.cpp?rev=35472&r1=35471&r2=35472&view=diff
==============================================================================
--- trunk/src/dialogs.cpp (original)
+++ trunk/src/dialogs.cpp Thu May  7 18:15:11 2009
@@ -980,7 +980,7 @@
        foreach (const config &adv, t->modification_advancements())
        {
                if (!utils::string_bool(adv["strict_amla"]) || 
!t->can_advance()) {
-                       det.xp_color = "<100,0,150>"; // from unit::xp_color()
+                       det.xp_color = "<170,0,255>"; // from unit::xp_color()
                        break;
                }
        }

Modified: trunk/src/unit.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/unit.cpp?rev=35472&r1=35471&r2=35472&view=diff
==============================================================================
--- trunk/src/unit.cpp (original)
+++ trunk/src/unit.cpp Thu May  7 18:15:11 2009
@@ -850,7 +850,7 @@
        const SDL_Color near_amla_colour          = {225,0,255,0};
        const SDL_Color mid_amla_colour   = {169,30,255,0};
        const SDL_Color far_amla_colour   = {139,0,237,0};
-       const SDL_Color amla_colour               = {100,0,150,0};
+       const SDL_Color amla_colour               = {170,0,255,0};
        const bool near_advance = max_experience() - experience() <= 
game_config::kill_experience;
        const bool mid_advance  = max_experience() - experience() <= 
game_config::kill_experience*2;
        const bool far_advance  = max_experience() - experience() <= 
game_config::kill_experience*3;


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to