fixed ordering of flag color

This commit is contained in:
John W. C. McNabb 2005-12-22 18:36:14 +00:00
parent 5f3adfb464
commit d9e9c935bc

View file

@ -134,7 +134,7 @@ namespace game_config
flag_rgb = string2rgb(v["flag_rgb"]);
if( !flag_rgb.size()){
//set green as old_flag_color
for(int i=0;i!=256;i++){
for(int i=255;i!=0;i--){
flag_rgb.push_back((Uint32)(i<<8));
}
}