From acef46781d3511392f6e1ac4ae0e22a34ecd007d Mon Sep 17 00:00:00 2001 From: suchmememanyskill Date: Thu, 3 Dec 2020 21:58:38 +0100 Subject: [PATCH] hotfix for 11.0.0. Bump version to 2.0.5 --- Makefile | 2 +- source/hos/pkg1.c | 1 + source/tegraexplorer/gfx/gfxutils.c | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bd49d16..46cf62d 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ include $(DEVKITARM)/base_rules IPL_LOAD_ADDR := 0x40003000 LPVERSION_MAJOR := 3 LPVERSION_MINOR := 0 -LPVERSION_BUGFX := 4 +LPVERSION_BUGFX := 5 ################################################################################ diff --git a/source/hos/pkg1.c b/source/hos/pkg1.c index b1768f8..f9e8569 100644 --- a/source/hos/pkg1.c +++ b/source/hos/pkg1.c @@ -43,6 +43,7 @@ static const pkg1_id_t _pkg1_ids[] = { { "20190809135709", 9, {0x2ec10, 0x5573, 0, 1, 12, HASH_ORDER_700_10x, 0x6495, 0x1d807} }, //9.0.0 - 9.0.1 { "20191021113848", 10,{0x2ec10, 0x5573, 0, 1, 12, HASH_ORDER_700_10x, 0x6495, 0x1d807} }, //9.1.0 { "20200303104606", 10,{0x30ea0, 0x5e4b, 0, 1, 12, HASH_ORDER_700_10x, 0x663c, 0x1d9a4} }, //10.0.0 + { "20201030110885", 10,{0x30ea0, 0x5e4b, 0, 1, 12, HASH_ORDER_700_10x, 0x663c, 0x1d9a4} }, //11.0.0 { NULL } //End. }; diff --git a/source/tegraexplorer/gfx/gfxutils.c b/source/tegraexplorer/gfx/gfxutils.c index cdfed86..71034e3 100644 --- a/source/tegraexplorer/gfx/gfxutils.c +++ b/source/tegraexplorer/gfx/gfxutils.c @@ -23,7 +23,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 v2.0.4 | Battery: %3d%%\n", battery >> 8); + gfx_printf("Tegraexplorer v2.0.5 | Battery: %3d%%\n", battery >> 8); RESETCOLOR; }