Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19 from lucaboy/patch-5
Browse files Browse the repository at this point in the history
10.3 U fix
  • Loading branch information
44670 committed Nov 13, 2015
2 parents dae37eb + c47834e commit e2ef515
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,14 +300,24 @@ Result bnInitParamsByHomeMenu() {
t = *(u32*)(tmpBuffer);
printf("0x00200000 in HomeMenu: %08x\n", t);

if (t == 0xe8960140 ) {
// old 3ds 10.3 usa
ntrConfig->HomeMenuVersion = SYSTEM_VERSION(10, 3, 0);
ntrConfig->HomeMenuInjectAddr = 0x12ddc4;
ntrConfig->HomeFSReadAddr = 0x12c090;
ntrConfig->HomeCardUpdateInitAddr = 0x118cc0;
ntrConfig->HomeFSUHandleAddr = 0x32dfa4;
ntrConfig->HomeAptStartAppletAddr = 0x12e8fc;
}

if (t == 0xe5c580f5 ) {
// old 3ds 10.3 eur
ntrConfig->HomeMenuVersion = SYSTEM_VERSION(10, 3, 0);
ntrConfig->HomeMenuInjectAddr = 0x12ddc4;
ntrConfig->HomeFSReadAddr = 0x12c090;
ntrConfig->HomeCardUpdateInitAddr = 0x118cc0;
ntrConfig->HomeFSUHandleAddr = 0x32dfa4;
ntrConfig->HomeAptStartAppletAddr = 0x12e8fc;
// old 3ds 10.3 eur
ntrConfig->HomeMenuVersion = SYSTEM_VERSION(10, 3, 0);
ntrConfig->HomeMenuInjectAddr = 0x12ddc4;
ntrConfig->HomeFSReadAddr = 0x12c090;
ntrConfig->HomeCardUpdateInitAddr = 0x118cc0;
ntrConfig->HomeFSUHandleAddr = 0x32dfa4;
ntrConfig->HomeAptStartAppletAddr = 0x12e8fc;
}

if (t == 0x0a000004 ) {
Expand Down

0 comments on commit e2ef515

Please sign in to comment.