From 9447256934f138df0101ae03ab74fa95f5e3d12b Mon Sep 17 00:00:00 2001 From: suchmememanyskill Date: Mon, 4 Jan 2021 18:30:09 +0100 Subject: [PATCH] Remove beta signature --- source/gfx/gfxutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gfx/gfxutils.c b/source/gfx/gfxutils.c index bcd1bc9..ed5fdeb 100644 --- a/source/gfx/gfxutils.c +++ b/source/gfx/gfxutils.c @@ -14,7 +14,7 @@ void gfx_clearscreen(){ gfx_boxGrey(0, 703, 1279, 719, 0xFF); gfx_boxGrey(0, 0, 1279, 15, 0xFF); gfx_con_setpos(0, 0); - gfx_printf("Tegraexplorer b%d.%d.%d | Battery: %3d%%\n", LP_VER_MJ, LP_VER_MN, LP_VER_BF, battery >> 8); + gfx_printf("Tegraexplorer %d.%d.%d | Battery: %3d%%\n", LP_VER_MJ, LP_VER_MN, LP_VER_BF, battery >> 8); RESETCOLOR; }