From c9caff3b8dfdcbb3c6530f1dea36ea2c840e82e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Izzo?= Date: Fri, 29 Jan 2021 18:15:33 +0100 Subject: [PATCH] Remove OPNRTX from background --- openrtx/src/ui/ui_main.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/openrtx/src/ui/ui_main.c b/openrtx/src/ui/ui_main.c index 2517e4dc..1bc3a881 100644 --- a/openrtx/src/ui/ui_main.c +++ b/openrtx/src/ui/ui_main.c @@ -29,12 +29,6 @@ void _ui_drawMainBackground() gfx_drawHLine(layout.top_h, layout.hline_h, color_grey); // Print bottom bar line of 1 pixel height gfx_drawHLine(SCREEN_HEIGHT - layout.bottom_h - 1, layout.hline_h, color_grey); - // Print transparent OPNRTX on the background - point_t splash_origin = {0, SCREEN_HEIGHT / 2 - 6}; - color_t yellow = yellow_fab413; - yellow.alpha = 0.1f * 255; - gfx_print(splash_origin, "O P N\nR T X", FONT_SIZE_12PT, TEXT_ALIGN_CENTER, - yellow); } void _ui_drawMainTop(state_t* last_state)