* Make sure to align publisher text out to the right _correctly_

* Changeset inspired by patch #822 by Buginator


git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@2676 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2007-11-01 20:19:27 +00:00
parent 5f39fd4fe1
commit 9d83e2ac7a
1 changed files with 4 additions and 2 deletions

View File

@ -418,8 +418,10 @@ void draw3DScene( void )
// FIXME: This wasn't shown before. Do we want to keep it? Or change it?
if(gamePaused())
{
iV_DrawText( _("Developed by Pumpkin Studios"), RET_X + 3, 467 + E_H );
iV_DrawText( _("Published by EIDOS Interactive"), pie_GetVideoBufferWidth() - 196, 467 + E_H );
const char* publisher = _("Published by EIDOS Interactive");
iV_DrawText(_("Developed by Pumpkin Studios"), RET_X, 467 + E_H);
iV_DrawText(publisher, pie_GetVideoBufferWidth() - iV_GetTextWidth(publisher) - RET_X, 467 + E_H);
}
}