From 9ee32a4dd67178a0c36e7da552ff776d5285629a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 16 Apr 2017 09:50:53 +0200 Subject: [PATCH] Style nit --- dynamic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dynamic.c b/dynamic.c index b4a691e7fb..798e50e0fb 100644 --- a/dynamic.c +++ b/dynamic.c @@ -1621,9 +1621,9 @@ bool rarch_environment_cb(unsigned cmd, void *data) /* Can potentially be called every frame, * don't do anything unless required. */ - if (geom->base_width != in_geom->base_width || - geom->base_height != in_geom->base_height || - geom->aspect_ratio != in_geom->aspect_ratio) + if ( (geom->base_width != in_geom->base_width) || + (geom->base_height != in_geom->base_height) || + (geom->aspect_ratio != in_geom->aspect_ratio)) { geom->base_width = in_geom->base_width; geom->base_height = in_geom->base_height;