PPGe: Scale down by worst of window/internal res.

See #13958.
This commit is contained in:
Unknown W. Brackets 2021-01-23 09:04:58 -08:00
parent a88f6b45d2
commit 0b666d0dac

View file

@ -957,6 +957,7 @@ void PPGeDrawTextWrapped(const char *text, float x, float y, float wrapWidth, fl
}
int zoom = (PSP_CoreParameter().pixelHeight + 479) / 480;
zoom = std::min(zoom, PSP_CoreParameter().renderScaleFactor);
float maxScaleDown = zoom == 1 ? 1.3f : 2.0f;
if (HasTextDrawer()) {