diff --git a/Makefile b/Makefile index 10792aa..e68f0ff 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules IPL_LOAD_ADDR := 0x40003000 LPVERSION_MAJOR := 2 -LPVERSION_MINOR := 4 +LPVERSION_MINOR := 5 LPVERSION_BUGFX := 0 ################################################################################ diff --git a/source/tegraexplorer/emmc/emmc.c b/source/tegraexplorer/emmc/emmc.c index 29113aa..a66b779 100644 --- a/source/tegraexplorer/emmc/emmc.c +++ b/source/tegraexplorer/emmc/emmc.c @@ -228,7 +228,7 @@ int dump_biskeys(){ void dumpEmuGpt(){ connect_mmc(EMUMMC); - sdmmc_storage_set_mmc_partition(&storage, 0); + emummc_storage_set_mmc_partition(&storage, 0); nx_emmc_gpt_parse(&emu_gpt, &storage); } diff --git a/source/tegraexplorer/gfx/gfxutils.c b/source/tegraexplorer/gfx/gfxutils.c index cf58a7a..bc34aeb 100644 --- a/source/tegraexplorer/gfx/gfxutils.c +++ b/source/tegraexplorer/gfx/gfxutils.c @@ -25,7 +25,7 @@ void gfx_clearscreen(){ gfx_box(0, 0, 719, 15, COLOR_WHITE); gfx_con_setpos(0, 0); - gfx_printf("Tegraexplorer v1.4.0\n"); + gfx_printf("Tegraexplorer v1.5.0\n"); RESETCOLOR; }