From f383330cfa18bf628ab60be123368de27adb6bed Mon Sep 17 00:00:00 2001 From: Wolf3s Date: Mon, 19 Jan 2026 14:26:53 -0300 Subject: [PATCH] Fix the video size matching the renderer. --- src/video/ps2/SDL_ps2video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/ps2/SDL_ps2video.c b/src/video/ps2/SDL_ps2video.c index 9bcc6cbbbc..79eec4c56a 100644 --- a/src/video/ps2/SDL_ps2video.c +++ b/src/video/ps2/SDL_ps2video.c @@ -74,7 +74,7 @@ static int PS2_VideoInit(_THIS) SDL_zero(current_mode); current_mode.w = 640; - current_mode.h = 480; + current_mode.h = 448; current_mode.refresh_rate = 60; /* 32 bpp for default */