diff --git a/Makefile b/Makefile index bef827a..3db0ae1 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ LIBRARY_DIRS := $(PORTLIBS) $(CTRULIB) LIBRARIES := citro3d ctru png z m VERSION_MAJOR := 2 -VERSION_MINOR := 6 +VERSION_MINOR := 7 VERSION_MICRO := 0 diff --git a/romfs/ntr.n3ds.bin b/romfs/ntr.n3ds.bin index 5660c9b..58e43f4 100644 Binary files a/romfs/ntr.n3ds.bin and b/romfs/ntr.n3ds.bin differ diff --git a/romfs/ntr.o3ds.bin b/romfs/ntr.o3ds.bin index 4994fd2..f7a4249 100644 Binary files a/romfs/ntr.o3ds.bin and b/romfs/ntr.o3ds.bin differ diff --git a/source/config.c b/source/config.c index 4ae108f..9524ce8 100644 --- a/source/config.c +++ b/source/config.c @@ -156,6 +156,7 @@ void configInit(void) // svcCloseHandle(fsuHandle); #if EXTENDEDMODE bnConfig->versionToLaunch = V34; + config->flags = LV34; #else if (config->flags & LV32) bnConfig->versionToLaunch = V32; else if (config->flags & LV33) bnConfig->versionToLaunch = V33; diff --git a/source/config.h b/source/config.h index 9590dfa..20093f2 100644 --- a/source/config.h +++ b/source/config.h @@ -9,7 +9,7 @@ (((major)<<24)|((minor)<<16)|((revision)<<8)) #endif -#define CURRENT_CONFIG_VERSION SYSTEM_VERSION(1, 0, 3) +#define CURRENT_CONFIG_VERSION SYSTEM_VERSION(1, 0, 4) #define SECONDS_IN_WEEK 604800 #define SECONDS_IN_DAY 86400 diff --git a/source/ntr_launcher.c b/source/ntr_launcher.c index 919dda6..eb42b04 100644 --- a/source/ntr_launcher.c +++ b/source/ntr_launcher.c @@ -239,4 +239,4 @@ void launchNTRDumpMode(void) ntrConfig->ShowDbgFunc = (u32)printDumpLog; copyRemoteMemory(CURRENT_PROCESS_HANDLE, (u32)buffer, CURRENT_PROCESS_HANDLE, (u32)buffer + 0x10, 0x10); bnLoadAndExecuteNTR(); -} +} \ No newline at end of file