Skip to content

Commit

Permalink
v2.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloMK7 committed Aug 30, 2022
1 parent 7c28ce1 commit e0e754e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ LIBRARIES := citro3d ctru png z m

VERSION_MAJOR := 2
VERSION_MINOR := 13
VERSION_MICRO := 6
VERSION_MICRO := 7



Expand Down
4 changes: 2 additions & 2 deletions source/firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Result bnInitParamsByFirmware(void)
bnConfig->FSPatchAddr = 0x0010F024;
bnConfig->SMPatchAddr = 0x0010189C;
}
else if (kernelVersion == SYSTEM_VERSION(2, 57, 0))
else if (kernelVersion == SYSTEM_VERSION(2, 57, 0) || kernelVersion == SYSTEM_VERSION(2, 58, 0))
{
// old3ds 11.14
ntrConfig->firmVersion = SYSTEM_VERSION(11, 14, 0);
Expand Down Expand Up @@ -258,7 +258,7 @@ Result bnInitParamsByFirmware(void)
bnConfig->FSPatchAddr = 0x0010F024;
bnConfig->SMPatchAddr = 0x0010189C;
}
else if (kernelVersion == SYSTEM_VERSION(2, 57, 0))
else if (kernelVersion == SYSTEM_VERSION(2, 57, 0) || kernelVersion == SYSTEM_VERSION(2, 58, 0))
{
// new3ds 11.14
ntrConfig->firmVersion = SYSTEM_VERSION(11, 14, 0);
Expand Down

0 comments on commit e0e754e

Please sign in to comment.