- cards syntax errors
- compilation errors fix for PSP
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-06-06 09:10:43 +00:00
parent c5d13e7cac
commit 115976c264
6 changed files with 13 additions and 13 deletions

View File

@@ -641,7 +641,7 @@ class GameStateDeckViewer: public GameState, public JGuiListener
JRenderer::GetInstance()->RenderQuad(quad, x , y , 0.0f,scale,scale);
if (showName){
char buffer[4096];
sprintf(buffer, "%s", _(card->getName()));
sprintf(buffer, "%s", _(card->getName()).c_str());
float scaleBackup = mFont->GetScale();
mFont->SetScale(scale);
mFont->DrawString(buffer,x,y);