From 7088281b52daf2c80624195bd9210bb5a4d95faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Sat, 16 Nov 2019 23:18:56 +0100 Subject: [PATCH] Fixing 1:1 PAR for 270 degree rotation --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index e9dc159891..210a6effe8 100644 --- a/retroarch.c +++ b/retroarch.c @@ -18653,7 +18653,7 @@ static void video_driver_set_viewport_square_pixel(void) highest = i; } - if (get_rotation() % 4) { + if (get_rotation() % 2) { aspect_x = height / highest; aspect_y = width / highest; } else {