From a98ce80df0e0991b693abd82a8fd5940edc4ebf2 Mon Sep 17 00:00:00 2001 From: alphanu1 <37101891+alphanu1@users.noreply.github.com> Date: Fri, 25 May 2018 10:49:28 +0100 Subject: [PATCH] Porch adjust to fix aspect --- gfx/display_servers/dispserv_x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/display_servers/dispserv_x11.c b/gfx/display_servers/dispserv_x11.c index 82d4d5b6bf..5b966b454b 100644 --- a/gfx/display_servers/dispserv_x11.c +++ b/gfx/display_servers/dispserv_x11.c @@ -133,7 +133,7 @@ static bool x11_set_resolution(void *data, crt_en = true; - hsp = width*1.10; + hsp = width*1.16; /* set core refresh from hz */ video_monitor_set_refresh_rate(hz); @@ -141,7 +141,7 @@ static bool x11_set_resolution(void *data, /* following code is the mode line genorator */ hfp = width+8; - hbp = width*1.23; + hbp = width*1.32; hmax = hbp; if (height < 241)