- display name of cards in the shop, when it loads, and any time by pressing triangle
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-06 06:35:29 +00:00
parent 1d4b8ef177
commit 5a2a4a7617
3 changed files with 29 additions and 8 deletions

View File

@@ -162,7 +162,7 @@ void GameStateShop::Render()
itemFont->SetColor(ARGB(255,255,255,255));
char c[4096];
r->FillRect(0,SCREEN_HEIGHT-17,SCREEN_WIDTH,17,ARGB(128,0,0,0));
sprintf(c, _("press [] to refresh").c_str());
sprintf(c, _("[]:other cards /\\:list").c_str());
unsigned int len = 4 + itemFont->GetStringWidth(c);
itemFont->DrawString(c,SCREEN_WIDTH-len,SCREEN_HEIGHT-12);