Jeck - Increased shop "text list" fade-in time, changed alternateRender to display "Land" rarity as well as common-mythic.

This commit is contained in:
wagic.jeck
2010-02-09 17:13:49 +00:00
parent 2a2bcef71a
commit 3c2d57508e
2 changed files with 4 additions and 1 deletions

View File

@@ -25,7 +25,7 @@
#define SHOP_SLOTS 11
#define SHOP_ITEMS SHOP_SLOTS+1
#define LIST_FADEIN 11
#define LIST_FADEIN 15
struct ShopBooster{
MTGSetInfo * mainSet;

View File

@@ -301,6 +301,9 @@ void CardGui::alternateRender(MTGCard * card, const Pos& pos){
case Constants::RARITY_C:
sprintf(buf,_("%s Common").c_str(),setlist[card->setId].c_str());
break;
case Constants::RARITY_L:
sprintf(buf,_("%s Land").c_str(),setlist[card->setId].c_str());
break;
default:
sprintf(buf,"%s",setlist[card->setId].c_str());
break;