From edd9ed3619646a3a577a12c20a07c9b01abfc277 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 20 Jul 2021 05:13:52 +0200 Subject: [PATCH] Fix some style nits --- retroarch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/retroarch.c b/retroarch.c index 15c67eeb77..0642c8c779 100644 --- a/retroarch.c +++ b/retroarch.c @@ -31396,7 +31396,7 @@ void video_driver_set_viewport_core(void) (float)geom->base_width / geom->base_height; } -void video_driver_set_viewport_full() +void video_driver_set_viewport_full(void) { unsigned width = 0; unsigned height = 0; @@ -31404,9 +31404,7 @@ void video_driver_set_viewport_full() video_driver_get_size(&width, &height); if (width == 0 || height == 0) - { return; - } aspectratio_lut[ASPECT_RATIO_FULL].value = (float)width / (float)height; }