*Reverted to the Widescreen size of Rev295 (this looks better)

This commit is contained in:
dimok321 2009-05-08 18:17:26 +00:00
parent e7cb9981e3
commit 728f0ab124
2 changed files with 4 additions and 4 deletions

View File

@ -233,7 +233,7 @@ void GuiImage::Draw()
if(tile > 0)
{
for(int i=0; i<tile; i++)
Menu_DrawImg(currLeft+width*i, this->GetTop(), width, height, image, imageangle, widescreen ? currScale*0.75 : currScale, currScale, this->GetAlpha());
Menu_DrawImg(currLeft+width*i, this->GetTop(), width, height, image, imageangle, widescreen ? currScale*0.80 : currScale, currScale, this->GetAlpha());
}
else
{
@ -241,7 +241,7 @@ void GuiImage::Draw()
if(scale != 1)
currLeft = currLeft - width/2 + (width*scale)/2;
Menu_DrawImg(currLeft, this->GetTop(), width, height, image, imageangle, widescreen ? currScale*0.75 : currScale, currScale, this->GetAlpha());
Menu_DrawImg(currLeft, this->GetTop(), width, height, image, imageangle, widescreen ? currScale*0.80 : currScale, currScale, this->GetAlpha());
}
if(stripe > 0)

View File

@ -1530,7 +1530,7 @@ ShowProgress (s32 done, s32 total)
// timeTxt.SetFont(fontClock);
if ((Settings.wsprompt == yes) && (CFG.widescreen)){
progressbarImg.SetTile(75*done/total);}
progressbarImg.SetTile(80*done/total);}
else {progressbarImg.SetTile(100*done/total);}
}
@ -1774,7 +1774,7 @@ ProgressDownloadWindow(int choice2)
if ((Settings.wsprompt == yes) && (CFG.widescreen)){/////////////adjust for widescreen
progressbarImg.SetPosition(80,40);
progressbarImg.SetTile(75*i/cntMissFiles);
progressbarImg.SetTile(80*i/cntMissFiles);
}
else{
progressbarImg.SetTile(100*i/cntMissFiles);}