Skip to content

Commit 8ff2c57

Browse files
committed
Adjust the Vita's resolution to be 240 pixels tall
The new resolution is still 16:10, but the viewport won't reveal things that aren't supposed to be shown if the hieght is 240 pixels tall.
1 parent 3ca02b4 commit 8ff2c57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/graphics/Renderer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ bool Renderer::setResolution(int scale, bool newWidescreen)
181181
{
182182
int newWidth, newHeight;
183183
#if defined(__VITA__)
184-
newWidth = 480;
185-
newHeight = 272;
184+
newWidth = 384;
185+
newHeight = 240;
186186
newWidescreen = true;
187187
#else
188188
#if defined(__SWITCH__)

0 commit comments

Comments
 (0)