Partial Stretch: This setting is needed on other devices too.

This commit is contained in:
Sacha 2013-11-28 14:59:17 +10:00
parent 10efbd5457
commit c71186b35a
5 changed files with 2 additions and 12 deletions

View file

@ -79,11 +79,9 @@ void CenterRect(float *x, float *y, float *w, float *h,
*x = 0.0f;
*w = frameW;
*h = frameW / origRatio;
#ifdef BLACKBERRY
// Stretch a little bit
if (g_Config.bPartialStretch)
*h = (frameH + *h) / 2.0f; // (408 + 720) / 2 = 564
#endif
*y = (frameH - *h) / 2.0f;
}
else