diff --git a/Makefile b/Makefile index 7299bda..10792aa 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ include $(DEVKITARM)/base_rules IPL_LOAD_ADDR := 0x40003000 LPVERSION_MAJOR := 2 -LPVERSION_MINOR := 3 -LPVERSION_BUGFX := 3 +LPVERSION_MINOR := 4 +LPVERSION_BUGFX := 0 ################################################################################ diff --git a/source/tegraexplorer/gfx/gfxutils.c b/source/tegraexplorer/gfx/gfxutils.c index ae55a79..146f72f 100644 --- a/source/tegraexplorer/gfx/gfxutils.c +++ b/source/tegraexplorer/gfx/gfxutils.c @@ -24,7 +24,7 @@ void gfx_clearscreen(){ gfx_box(0, 0, 719, 15, COLOR_WHITE); gfx_con_setpos(0, 0); - gfx_printf("Tegraexplorer v1.3.3\n"); + gfx_printf("Tegraexplorer v1.4.0\n"); RESETCOLOR; } diff --git a/source/tegraexplorer/utils/script.c b/source/tegraexplorer/utils/script.c index 6c1d8f9..1fb3b5f 100644 --- a/source/tegraexplorer/utils/script.c +++ b/source/tegraexplorer/utils/script.c @@ -17,7 +17,7 @@ char func[11] = "", args[2][128] = {"", ""}; int res, errcode; -const int scriptver = 133; +const int scriptver = 140; bool forceExit = false; u32 currentcolor;