From fa6cf1ffb8df39715a624c1fee39c63e2776417f Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 21 Feb 2019 01:37:43 -0800 Subject: [PATCH] fix splash boundaries --- sept/sept-secondary/src/splash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sept/sept-secondary/src/splash.c b/sept/sept-secondary/src/splash.c index 7feec1831..019a28aa2 100644 --- a/sept/sept-secondary/src/splash.c +++ b/sept/sept-secondary/src/splash.c @@ -44,7 +44,7 @@ void draw_splash(volatile uint32_t *fb) { } /* Draw actual splash. */ - const size_t x_res = 352; + const size_t x_res = 336; const size_t y_res = 392; const size_t x_start = (768 - x_res) / 2; const size_t y_start = (1280 - y_res) / 2;