Skip to content

Commit

Permalink
Larger screen size on VitaTV for PS1 games in normal mode
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rsn8887 committed Apr 17, 2018
1 parent a0687a2 commit edfa73f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion user/menu.c
Expand Up @@ -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;
}
}
}

Expand Down

0 comments on commit edfa73f

Please sign in to comment.