From edfa73f02b3625f249e2c92b2ad81e989a1b135f Mon Sep 17 00:00:00 2001 From: rsn8887 Date: Tue, 17 Apr 2018 01:16:49 -0500 Subject: [PATCH] Larger screen size on VitaTV for PS1 games in normal mode The top and bottom black borders of PS1 games on VitaTV in normal mode are eliminated by increasing the width of the image instead of decreasing the height. The aspect ratio is still corrected, but the resulting image is slightly larger. --- user/menu.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/user/menu.c b/user/menu.c index 321d34f..fdc6d4a 100644 --- a/user/menu.c +++ b/user/menu.c @@ -385,7 +385,12 @@ void getPopsScreenSize(float *scale_x, float *scale_y) { // PSTV scale fix if (sceKernelIsPSVitaTV()) { - (*scale_y) *= 0.845f; + if (config.screen_mode == SCREEN_MODE_NORMAL) { + (*scale_y) = 1.0f; + (*scale_x) = 1.0f / 0.845f; + } else { + (*scale_y) *= 0.845f; + } } }