Skip to content

Commit 563914a

Browse files
committedFeb 11, 2017
Update 2.7 for Preview 6
1 parent 208fe92 commit 563914a

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ LIBRARY_DIRS := $(PORTLIBS) $(CTRULIB)
4545
LIBRARIES := citro3d ctru png z m
4646

4747
VERSION_MAJOR := 2
48-
VERSION_MINOR := 6
48+
VERSION_MINOR := 7
4949
VERSION_MICRO := 0
5050

5151

‎romfs/ntr.n3ds.bin

4.61 KB
Binary file not shown.

‎romfs/ntr.o3ds.bin

6.8 KB
Binary file not shown.

‎source/config.c

+1
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ void configInit(void)
156156
// svcCloseHandle(fsuHandle);
157157
#if EXTENDEDMODE
158158
bnConfig->versionToLaunch = V34;
159+
config->flags = LV34;
159160
#else
160161
if (config->flags & LV32) bnConfig->versionToLaunch = V32;
161162
else if (config->flags & LV33) bnConfig->versionToLaunch = V33;

‎source/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
(((major)<<24)|((minor)<<16)|((revision)<<8))
1010
#endif
1111

12-
#define CURRENT_CONFIG_VERSION SYSTEM_VERSION(1, 0, 3)
12+
#define CURRENT_CONFIG_VERSION SYSTEM_VERSION(1, 0, 4)
1313

1414
#define SECONDS_IN_WEEK 604800
1515
#define SECONDS_IN_DAY 86400

‎source/ntr_launcher.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,4 +239,4 @@ void launchNTRDumpMode(void)
239239
ntrConfig->ShowDbgFunc = (u32)printDumpLog;
240240
copyRemoteMemory(CURRENT_PROCESS_HANDLE, (u32)buffer, CURRENT_PROCESS_HANDLE, (u32)buffer + 0x10, 0x10);
241241
bnLoadAndExecuteNTR();
242-
}
242+
}

0 commit comments

Comments
 (0)