mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-22 19:29:18 +01:00
*Reverted to the Widescreen size of Rev295 (this looks better)
This commit is contained in:
parent
e7cb9981e3
commit
728f0ab124
@ -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)
|
||||
|
@ -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);}
|
||||
|
Loading…
Reference in New Issue
Block a user