PAL aspect ratio adjustment (#242)

This commit is contained in:
Logan McNaughton
2025-02-12 10:14:06 +01:00
committed by GitHub
parent b67268ff62
commit 0faf33fcfa
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ void rdp_close()
static void calculate_viewport(float *x, float *y, float *width, float *height)
{
const int32_t display_width = gfx_info.PAL ? 360 : 320;
const int32_t display_width = gfx_info.PAL ? 384 : 320;
const int32_t display_height = gfx_info.PAL ? 288 : 240;
int w, h;