Fix some style nits

This commit is contained in:
twinaphex 2021-07-20 05:13:52 +02:00
parent 53a35e87c3
commit edd9ed3619

View File

@ -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;
}