-fix bloodhall ooze
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-29 13:22:39 +00:00
parent 07ff992e4d
commit 7a8a17bd99
4 changed files with 60 additions and 25 deletions

View File

@@ -160,11 +160,15 @@ void GameStateShop::Render()
JRenderer * r = JRenderer::GetInstance();
r->ClearScreen(ARGB(0,0,0,0));
if (mBg)JRenderer::GetInstance()->RenderQuad(mBg,0,0);
r->FillRect(5,SCREEN_HEIGHT-15,110,15,ARGB(200,0,0,0));
itemFont->SetColor(ARGB(255,255,255,255));
itemFont->DrawString(_("press [] to refresh").c_str(),10,SCREEN_HEIGHT-12);
if (shop)
shop->Render();
r->FillRect(5,SCREEN_HEIGHT-15,110,15,ARGB(200,0,0,0));
itemFont->DrawString(_("press [] to refresh").c_str(),10,SCREEN_HEIGHT-12);
if (mStage == STAGE_SHOP_MENU && menu){
menu->Render();
}