From 4ceac06f0cb52d25eac4012dfe8a4abfed93d1a2 Mon Sep 17 00:00:00 2001 From: Alex Taber Date: Sat, 9 Sep 2017 20:12:10 -0400 Subject: [PATCH] improve no splashes interface --- source/draw.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/draw.c b/source/draw.c index db3723c..bd0ec9a 100644 --- a/source/draw.c +++ b/source/draw.c @@ -284,8 +284,10 @@ void draw_splash_interface(Splash_s *splashes_list, int splash_count, int select { if (splashes_list == NULL) { - pp2d_begin_draw(GFX_TOP); - pp2d_draw_text_center(GFX_TOP, 100, 1, 1, COLOR_WHITE, "NO SPLASHES FOUND"); + draw_base_interface(); + pp2d_draw_text_center(GFX_TOP, 80, 0.7, 0.7, COLOR_YELLOW, "No splashes found!"); + pp2d_draw_text_center(GFX_TOP, 110, 0.7, 0.7, COLOR_YELLOW, "Press \uE005 to download from QR"); + pp2d_draw_text_center(GFX_TOP, 140, 0.7, 0.7, COLOR_YELLOW, "Or \uE045 to quit"); pp2d_end_draw(); return; }