1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00

Bump version

+ Bugfix
This commit is contained in:
Such Meme, Many Skill 2020-04-05 17:25:35 +02:00
parent f95b6e399f
commit b5a9d94d35
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules
IPL_LOAD_ADDR := 0x40003000 IPL_LOAD_ADDR := 0x40003000
LPVERSION_MAJOR := 2 LPVERSION_MAJOR := 2
LPVERSION_MINOR := 4 LPVERSION_MINOR := 5
LPVERSION_BUGFX := 0 LPVERSION_BUGFX := 0
################################################################################ ################################################################################

View file

@ -228,7 +228,7 @@ int dump_biskeys(){
void dumpEmuGpt(){ void dumpEmuGpt(){
connect_mmc(EMUMMC); connect_mmc(EMUMMC);
sdmmc_storage_set_mmc_partition(&storage, 0); emummc_storage_set_mmc_partition(&storage, 0);
nx_emmc_gpt_parse(&emu_gpt, &storage); nx_emmc_gpt_parse(&emu_gpt, &storage);
} }

View file

@ -25,7 +25,7 @@ void gfx_clearscreen(){
gfx_box(0, 0, 719, 15, COLOR_WHITE); gfx_box(0, 0, 719, 15, COLOR_WHITE);
gfx_con_setpos(0, 0); gfx_con_setpos(0, 0);
gfx_printf("Tegraexplorer v1.4.0\n"); gfx_printf("Tegraexplorer v1.5.0\n");
RESETCOLOR; RESETCOLOR;
} }